You are not logged in.
Pages: 1
Am i miss something?
i got install zeos on my IDE (laz).
Thank you
Offline
There is a TSqlDBZeosConnectionProperties in mormot.db.sql.zeos.pas for mORMot 2.
As stated in the beginning of the unit, you need to undefine the NOSYNDBZEOS conditional from mormot2.lpk Lazarus package > Custom Options > Defines menu.
Or just include the unit in your project, of course with no NOSYNDBZEOS conditional.
Offline
uses
mormot.db.sql.odbc,
mormot.db.sql,
mormot.db.sql.zeos;
I undefined -NOSYNDBZEOS in mormot2.lpk and mormot2UI.lpk and recompiled both ,reinstall UI one, but error is still : Identifier not found "TSqlDBZEOSConnectionProperties"
but, "TSqlDBODBCConnectionProperties is oK
Last edited by mormoter (2024-07-14 03:23:53)
Offline
Any solution? I have the same error, using PerfTestCases. I was only able to use it by adding mormot.db.sql.zeos to my project.
Last edited by Antonio (2024-08-29 22:48:54)
Offline
This is as expected: either you undefine NOSYNDBZEOS in the package, or you manually add mormot.db.sql.zeos.pas in your project.
For obvious dependencies reasons, this unit is not enabled by default within the mormot package.
Offline
Pages: 1