I use version 6.1.5 stable, but tried 6.5.1 alpha as well.
I haven't modify the ZEOS source.
installing the libmysqlclient15-dev the package put an symbolic link libmysqlclient.so pointing to libmysqlclient.15.0.0 ( the mysql5 client )
so, i don't understand why it is not working.
Search found 4 matches
- 03.05.2006, 20:27
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Does anyone successfully connect mysql5 with kylix ?
- Replies: 6
- Views: 1293
- 03.05.2006, 20:20
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Does anyone successfully connect mysql5 with kylix ?
- Replies: 6
- Views: 1293
Hello mdaems, thats my code for the sample program: program zeotest; uses ZConnection, ZDataset; var MyConnection: TZConnection; MyQuery : TZQuery; sSQL : widestring; begin sSQL := 'SHOW TABLES'; MyConnection := TZConnection.Create(nil); MyQuery := TZQuery.Create(nil); MyQuery.Connection := MyConnec...
- 03.05.2006, 16:35
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Does anyone successfully connect mysql5 with kylix ?
- Replies: 6
- Views: 1293
Does anyone successfully connect mysql5 with kylix ?
I have a simple console program to connect to mysql under linux. I was using version 4 and it works. Now I want to use the same programs with mysql5, but I get error connecting: None of the dynamic libraries can be found: libmysqlclient.so I have made a test program that uses TZConnection and TZQuer...
- 03.05.2006, 13:42
- Forum: MySQL
- Topic: None of the dynamic libraries can be found:libmysqlclient.so
- Replies: 0
- Views: 977
None of the dynamic libraries can be found:libmysqlclient.so
I have a problem connecting to mysql5 in debian using zeoslib. my test program is very simple: program zeotest; uses ZConnection, ZDataset; var MyConnection: TZConnection; MyQuery : TZQuery; sSQL : widestring; begin sSQL := 'SHOW TABLES'; MyConnection := TZConnection.Create(nil); MyQuery := TZQuery....