OPENJPA-1294: New connection is not reference counted

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@929184 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2010-03-30 16:33:16 +00:00
parent b1a2190cf3
commit 8abf57d913
1 changed files with 1 additions and 1 deletions

View File

@ -975,7 +975,7 @@ public class JDBCStoreManager
public Connection getNewConnection() {
try {
return connectInternal();
return _ds.getConnection();
} catch (SQLException e) {
throw SQLExceptions.getStore(e, _dict);
}