Am extending the data layer of an existing application to work with FireBird 2.5, in addition to MSSQL and SQLite, but have hit a stumbling block.
I have a field called TimeStamp which stores the data/time as type TimeStamp. This works fine under MSSQL and SQLite where the type is datetime, but falls over under Firebird. The following SQL:
[CODE]SELECT SysTrnId,'TimeStamp' from "TRANSACTIONS"[/CODE]
seemingly works, but the TimeStamp field is return as fieldname "CONSTANT" and the contents are the text "timestamp"
Is it possible to do this under FireBird, or am I going to have to rename the field and change the code in the other data layers.
Thanks
Colin