2
In postgresql we have the table version
where all the data I need will be in it. Ex.:
SQL:
Select * from version()
Upshot:
PostgreSQL 9.2.3 on x86_64-unknown-linux-gnu, compiled by gcc (SUSE Linux) 4.8.3 20140627 [gcc-4_8-branch revision 212064], 64-bit
There is something like this in Firebird, or something similar that returns the operating system and platform?
SELECT rdb$get_context('SYSTEM', 'ENGINE_VERSION') 
from rdb$database;
will return the version for you, but I do not know if you have OS– Sorack
Yeah, I had tested this, it returns only the version. but thanks.
– Victor Tadashi