Skip to content

Commit

Permalink
new version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prrvchr committed Jun 17, 2024
1 parent 4ccc6a5 commit f0dac32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 80 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public ScrollableResultSet(DriverProvider provider,
super(provider, result, query);
m_IsUpdatable = false;
initCache(result);
System.out.println("ScrollableResultSet() 1");
}


Expand All @@ -99,7 +98,6 @@ public int getType()
public void insertRow()
throws SQLException
{
System.out.println("ScollableResultSet.insertRow() 1");
if (!isOnInsertRow()) {
throw new SQLException("ERROR: insertRow() cannot be called when moveToInsertRow has not been called !");
}
Expand All @@ -113,7 +111,6 @@ public void insertRow()
// XXX: We must be able to respond positively to the insert
m_InsertedRow = m_RowCount;
m_CurrentRow = m_InsertedRow;
System.out.println("ScollableResultSet.insertRow() 2");
}

@Override
Expand Down
Loading

0 comments on commit f0dac32

Please sign in to comment.