Il 19/11/2016 11:40, Graeme Geldenhuys via Lazarus ha scritto:

On 2016-11-19 03:25, Terry A. Haimann via Lazarus wrote:
> What version of Lazarus can connect to MySQL 5.7 using TSqlConnector?
Technically it's got nothing to do with the Lazarus version, but rather
the FPC version. FPC is the one where the database components are
defined, in the FCL.

Lazarus 1.6 includes the package SQLDBLaz which provides support for MySQL from versions 4.0 to 5.6.
Looking into the sources, version 5.7 is already there, but the package doesn't support it, and therefore it can't be used taking advantage of the Object Inspector.
It should work by adding mysql57conn to the uses clause, and creating the required objects and filling up the appropriate fields programmatically.

Sort of
SQLConnector1.ConnectorType := 'MYSQL 5.7'; // programmatically because the OI doesn't have it
MySQL57Connection1 := TMySQL57Connection.Create(Self); // programmatically because you can't drop it into the form
etc..

Giuliano


-- 
_______________________________________________
Lazarus mailing list
Lazarus@lists.lazarus-ide.org
http://lists.lazarus-ide.org/listinfo/lazarus

Reply via email to