Can unidac return the version of the sqlite dll it is connected to?
or for that matter can it return the version of any driver it is connected to?
sqlite version
Re: sqlite version
For SQLite, simply execute the following query while connected to a data base:
For PostgreSQL it is
Don't know about other engines, but it should be similar.
Code: Select all
SELECT sqlite_version();Code: Select all
SELECT version();Re: sqlite version
Hello,
A version of the server in any provider (SQLite library) can be get using the TUniConnection.ServerVersion property. If a DB client is used for connection, you can find out the client version using the TUniConnection.ClientVersion property.
A version of the server in any provider (SQLite library) can be get using the TUniConnection.ServerVersion property. If a DB client is used for connection, you can find out the client version using the TUniConnection.ClientVersion property.