OPENJPA-884: Logging oversight in DB2Dictionary

https://issues.apache.org/jira/browse/OPENJPA-884

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@749077 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2009-03-01 19:31:06 +00:00
parent cc38e27eef
commit efc6ba4735
1 changed files with 47 additions and 53 deletions

View File

@ -234,8 +234,8 @@ public class DB2Dictionary
conn = super.decorate(conn);
if (conf.getTransactionIsolationConstant() == -1
&& conn.getTransactionIsolation() < conn.TRANSACTION_READ_COMMITTED)
conn.setTransactionIsolation(conn.TRANSACTION_READ_COMMITTED);
&& conn.getTransactionIsolation() < Connection.TRANSACTION_READ_COMMITTED)
conn.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
return conn;
}
@ -275,7 +275,7 @@ public class DB2Dictionary
db2ServerType = db2UDBV82OrLater;
}
// verify that databae product is supported
// verify that database product is supported
if (db2ServerType == 0 || maj == 0)
throw new UnsupportedException(_loc.get("db-not-supported",
new Object[] {databaseProductName, databaseProductVersion }));
@ -340,9 +340,7 @@ public class DB2Dictionary
int isolationLevel;
// For db2UDBV81OrEarlier and db2ISeriesV5R3OrEarlier:
// "optimize for" clause appears before "for update" clause.
StringBuffer forUpdateString = new StringBuffer(
getOptimizeClause(sel));
try {
StringBuffer forUpdateString = new StringBuffer(getOptimizeClause(sel));
// Determine the isolationLevel; the fetch
// configuration data overrides the persistence.xml value
if (fetch != null && fetch.getIsolation() != -1)
@ -357,39 +355,35 @@ public class DB2Dictionary
if (isolationLevel == Connection.TRANSACTION_SERIALIZABLE)
forUpdateString.append(" ").append(forUpdateClause);
else
forUpdateString.append(" ").append(forUpdate)
.append(" ").append(withRSClause);
forUpdateString.append(" ").append(forUpdate).append(" ")
.append(withRSClause);
break;
case db2ZOSV8xOrLater:
case db2UDBV82OrLater:
if (isolationLevel == Connection.TRANSACTION_SERIALIZABLE) {
forUpdateString.append(" ").append(forReadOnlyClause)
.append(" ").append(withRRClause)
.append(" ").append(useKeepUpdateLockClause);
.append(" ").append(withRRClause).append(" ").append(
useKeepUpdateLockClause);
} else {
forUpdateString.append(" ").append(forReadOnlyClause)
.append(" ").append(withRSClause)
.append(" ").append(useKeepUpdateLockClause);
.append(" ").append(withRSClause).append(" ").append(
useKeepUpdateLockClause);
}
break;
case db2ISeriesV5R4OrLater:
if (isolationLevel == Connection.TRANSACTION_SERIALIZABLE) {
forUpdateString.append(" ").append(forReadOnlyClause)
.append(" ").append(withRRClause)
.append(" ").append(useKeepExclusiveLockClause);
.append(" ").append(withRRClause).append(" ").append(
useKeepExclusiveLockClause);
} else {
forUpdateString.append(" ").append(forReadOnlyClause)
.append(" ").append(withRSClause)
.append(" ").append(useKeepExclusiveLockClause);
.append(" ").append(withRSClause).append(" ").append(
useKeepExclusiveLockClause);
}
break;
}
}
}
catch (Exception e) {
if (log.isTraceEnabled())
log.error(e.toString(),e);
}
return forUpdateString.toString();
}
@ -514,8 +508,8 @@ public class DB2Dictionary
}
/**
* Append exception information from SQLCA to the exsisting
* exception meassage
* Append exception information from SQLCA to the existing
* exception message
*/
private String appendExtendedExceptionMsg(String msg, SQLException sqle){
final String GETSQLCA ="getSqlca";
@ -827,7 +821,7 @@ public class DB2Dictionary
Column pkColumn) {
if (isDB2ZOSV8xOrLater()) {
// build the index for the sequence tables
// the index name will the fully qualified table name + _IDX
// the index name will be the fully qualified table name + _IDX
Table tab = schema.getTable(table);
Index idx = tab.addIndex(tab.getFullName() + "_IDX");
idx.setUnique(true);