Hi,
I'm using ODBC for connection to Informix database.
Inside database are data of one ERP and I'm just collecting some information from it - just plain select.
Very often, tables in database are locked during writing data (ERP is writing them), so only way to access those table is to use isolation level with :
set isolation to dirty read;
When I use this isolation level together with select in some Informix admin tools, it works perfect every time, but I can't use it with Lazarus ODBC Connection + SQL Query.
When I run something like this :
set isolation to dirty read;
select * from something;
With isolation level I get error message : EDatabaseError: Operation cannot be performed on an inactive dataset
Without isolation level, select is working, but only when target tables are not locked.
Is there any way in Lazarus to use isolation level for Informix over ODBC connection ?