Subject Re: Server Version Info
Author stanw1950
--- In IBObjects@yahoogroups.com, "Ed Dressel" <Dressel@A...> wrote:
> How do I get the server version info on a client?
>
> Thanks
> Ed Dressel

If you are using a TIBODatabase (MyDb) like I am you can use (Delphi):

MyVersion := MyDb.Characteristics.DbVersion;

If needed, you can also get the sql dialect:

MyDialect := MyDb.SQLDialect;


Stan