コード例 #1
0
ファイル: SPIResultSet.java プロジェクト: Hellblazer/PL-JAVA
 public void close() throws SQLException {
   if (m_portal.isValid()) {
     m_portal.close();
     m_statement.resultSetClosed(this);
     m_table = null;
     m_tableRow = -1;
     m_currentRow = null;
     m_nextRow = null;
     super.close();
   }
 }
コード例 #2
0
ファイル: SPIResultSet.java プロジェクト: Hellblazer/PL-JAVA
 protected final Portal getPortal() throws SQLException {
   if (!m_portal.isValid()) throw new SQLException("ResultSet is closed");
   return m_portal;
 }