I\'m using JDBC for very simple database connectivity.
I have created my connection/statement and executed a query. I check the query object of the statement in the
In java.sql.connection you should call this method after you create your connection :
conn.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
maybe there is a similar method in Oracle.