RRU*_*RUZ 6 c++ delphi firebird
是否存在确定Firebird SQL版本的任何方法?使用SQL或代码(delphi,C++).
再见
Re0*_*ess 10
如果您想通过SQL找到它,可以使用get_context查找引擎版本,具体如下:
SELECT rdb$get_context('SYSTEM', 'ENGINE_VERSION')
as version from rdb$database;
Run Code Online (Sandbox Code Playgroud)
你可以在这里阅读更多关于它的firebird faq,但它需要Firebird 2.1我相信.