コード例 #1
0
ファイル: TsResultSet.cs プロジェクト: bastie/NetVampire
 public bool getMoreResults(int newPos, int fetchsize)
 {
     this.fetchsize = fetchsize;
     if (dbengine != null)
     {
         try
         {
             if (type != java.sql.ResultSetConstants.TYPE_SCROLL_INSENSITIVE)
             {
                 rows.removeAllElements();
                 windowStart = newPos;
             }
             dbengine.contSelectStatement(this);
             if (level != 0)
             {
                 eof = false;
                 return(eof);
             }
         }
         catch (TinySQLException)
         {
         }
     }
     eof = true;
     return(eof);
 }
コード例 #2
0
 public void clearParameters() //throws SQLException
 {
     substitute.removeAllElements();
 }