license not found under Delphi 2006

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
bayerleo
Posts: 3
Joined: Thu 14 Dec 2006 12:44

license not found under Delphi 2006

Post by bayerleo » Thu 14 Dec 2006 13:04

Hello,

I wanted to try the trial version of mysqldirect .net data provider, but all I got was the 'license not found error'.

I did the following:

Create a windows forms project using Delphi 2006. Then placed a mysqlconnection on the form.
I compiled and started the project (just a blank formular for now).
Then a licences1.licx file was created, content:

Code: Select all

CoreLab.MySql.MySqlConnection, CoreLab.MySql, Version=3.55.16.0, Culture=neutral, PublicKeyToken=09af7300eec23701
I placed a button on the form and inserted the following delphi code:

Code: Select all

var
  con:mysqlconnection;
begin
  con:=mysqlconnection.Create('Database=o2;Host=webentwicklung;User Id=dvps1;Password=tesdv71;');
  con.Open;
end
All I get is 'license not found'.

Of course the CoreLab.MySql.dll is referenced, and of course I already tried different ways, such as creating the licenses.licx file manually, compiling the license manually using lc.exe and so on...
In fact, I even can't hit "Test Connection" in the MySQL Connection Editor without the above mentioned error message just before I type one single line of code!

Do you have any advice?

Thank you!!

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Fri 15 Dec 2006 07:29

What operating system do you use?

bayerleo
Posts: 3
Joined: Thu 14 Dec 2006 12:44

Post by bayerleo » Fri 15 Dec 2006 08:24

Windows XP Prof Version 2002, SP2, AMD Sempron 2600+, 2 GB Ram

Delphi:
Borland Delphi for Microsoft .NET Version 10.0.228.42451 Update 2

Framework:
.NET Framework 1.1, Version 1.1.4322.573

CoreLab:
corelab.mysql.dll 3.55.16.0

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Fri 15 Dec 2006 09:51

Please wait for the 3.55.17.0 (should be uploaded onto our site tonight).
This problem ought to be absent there.

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Fri 15 Dec 2006 13:06

New build of MySQLDirect .NET 3.55.17 is available now!

bayerleo
Posts: 3
Joined: Thu 14 Dec 2006 12:44

Post by bayerleo » Fri 15 Dec 2006 13:20

It works!
Thank you so much you saved my day :D

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Fri 15 Dec 2006 13:33

You are welcome.

Post Reply