You are not logged in.
Pages: 1
I've installed ZEOS 7.2 in My Delphi 10 Seattle. Loaded the source in the IDE and ran it.
This gave me the opportunity to create a connection. Therefore I select ZEOS which my MySQL database will be connected. I put the libmysql.dll in windows\system32.
The database connection will not be executed:
Project SynDBExplorer.exe raised exception class EZSQLException with message 'Requested database driver was not found'.
Do I have something to do extra to connect my MySQL/MariaDB database with ZEOS?
Offline
Uncomment
{.$define USEZEOS}
Michal
Offline
I've done it already (see documentation)
Offline
I'm having similar issues. What should I put in "Server" to connect to MySQL using ZEOS?
localhost:
Requested database driver was not found
mysql:localhost
Project SynDBExplorer.exe raised exception class EZSQLException with message 'SQL Error: Unknown database 'localhost' Code: 1049 Message: Connect to "localhost" as user "root"'.
mysql:127.0.0.1
Project SynDBExplorer.exe raised exception class EZSQLException with message 'SQL Error: Unknown database '127.0.0.1' Code: 1049 Message: Connect to "127.0.0.1" as user "root"'.
Of course, I can connect without problems with any other program (heidisql, my own anydac based programs, etc.)
Offline
Check e.g. https://synopse.info/files/html/Synopse … #TITLE_192
TSQLDBZEOSConnectionProperties.URI() allows to generate the proper URI.
Offline
Thanks, I had just found out by debugging line-by-line what the constructor needed. It was quicker than loading that file in my browser, let alone navigating it.
Offline
Also check the documentation of TSQLDBZeosConnectionProperties
https://synopse.info/files/html/api-1.1 … PROPERTIES
- faster to download for sure...
Also part of the source code of the unit, as comments.
Offline
Yes, I'm slowly making progress.
I think people don't say this as often as we should - thank you for your incredible work, Arnaud.
Offline
Pages: 1