Hi,
I have a problem to set a JDBC connection as READ UNCOMMITED.
setTransactionI solation(Connec tion.TRANSACTIO N_READ_UNCOMMIT TED)
This is causing lots of blocking on tables
and update or insert doesn't work properly.
Does anyone have any idea what I'm missing here?
I asked i-net support and they suggested to call
setAutoCommit(f alse) after the above function
and it didn't work.
also suggested impltrans = true, and I changed that option on SQL
and it caused more blocking.
Thanks in advance for any info.
I have a problem to set a JDBC connection as READ UNCOMMITED.
setTransactionI solation(Connec tion.TRANSACTIO N_READ_UNCOMMIT TED)
This is causing lots of blocking on tables
and update or insert doesn't work properly.
Does anyone have any idea what I'm missing here?
I asked i-net support and they suggested to call
setAutoCommit(f alse) after the above function
and it didn't work.
also suggested impltrans = true, and I changed that option on SQL
and it caused more blocking.
Thanks in advance for any info.
Comment