Achim Kalwa 61 Posted March 7 Hello *, our application still uses Firebird 3.0.x with dbExpress for data access. We would like to use Firebird 5.0 in the near future. Some first tests throws an exception "unknown ISC error 0" when executing this simple SQL query: select * from MON$DATABASE Looks like dbExpress can't handle the new "TIMESTAMP WITH TIMEZONE" data type. Is there any switch or parameter to make dbExpress work with Firebird 5? Or do we need to change all the code to use FireDAC? TIA Achim Share this post Link to post
Lajos Juhász 293 Posted March 7 22 minutes ago, Achim Kalwa said: Looks like dbExpress can't handle the new "TIMESTAMP WITH TIMEZONE" data type. Is there any switch or parameter to make dbExpress work with Firebird 5? Or do we need to change all the code to use FireDAC? You can try to contact support and ask to open a ticket for dbExpress. As you wrote this is a new feature in Firebird that should be supported. Share this post Link to post
FredS 138 Posted March 7 3 hours ago, Achim Kalwa said: can't handle the new "TIMESTAMP WITH TIMEZONE" data type You can execute this statement after connecting to a v4 or v5 db: 'set bind of TIME ZONE to LEGACY' 1 Share this post Link to post
Achim Kalwa 61 Posted March 7 9 minutes ago, FredS said: You can execute this statement after connecting to a v4 or v5 db: 'set bind of TIME ZONE to LEGACY' Thanks a lot; I will try that. Share this post Link to post