* minor - setSavepoint should auto allocate connection.

This commit is contained in:
Heng Sin Low 2007-10-23 22:12:22 +00:00
parent 2d5e73ea1e
commit d2d443500a
1 changed files with 3 additions and 0 deletions

View File

@ -562,6 +562,9 @@ public class Trx implements VetoableChangeListener
return setRemoteSavepoint(name);
}
if (m_connection == null)
getConnection();
if(m_connection != null) {
return m_connection.setSavepoint(name);
} else {