[ 1706552 ] Wrong transaction isolationlevel in ReportStart class
This commit is contained in:
parent
a4da34825a
commit
2be2e6be86
|
@ -520,7 +520,7 @@ public class ReportStarter implements ProcessCall {
|
||||||
"WHERE AD_PInstance_ID="+AD_PInstance_ID;
|
"WHERE AD_PInstance_ID="+AD_PInstance_ID;
|
||||||
Statement pstmt = null;
|
Statement pstmt = null;
|
||||||
try {
|
try {
|
||||||
pstmt = DB.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY, trxName);
|
pstmt = DB.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE, trxName);
|
||||||
pstmt.executeUpdate(sql);
|
pstmt.executeUpdate(sql);
|
||||||
pstmt.close();
|
pstmt.close();
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
|
|
Loading…
Reference in New Issue