Searched refs:crs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetReader.java134 CachedRowSet crs = (CachedRowSet)caller;
144 if(crs.getPageSize() == 0 && crs.size() >0 ) {
146 // crs.size() will show the total no of rows.
147 crs.close();
160 if (con == null || crs.getCommand() == null)
164 con.setTransactionIsolation(crs.getTransactionIsolation());
169 PreparedStatement pstmt = con.prepareStatement(crs.getCommand());
174 pstmt.setMaxRows(crs.getMaxRows());
175 pstmt.setMaxFieldSize(crs
[all...]
H A DCachedRowSetWriter.java274 CachedRowSetImpl crs = (CachedRowSetImpl)caller;
297 con.setTransactionIsolation(crs.getTransactionIsolation());
300 initSQLStatements(crs);
303 RowSetMetaDataImpl rsmdWrite = (RowSetMetaDataImpl)crs.getMetaData();
307 int sz= crs.size()+1;
330 showDel = crs.getShowDeleted();
331 crs.setShowDeleted(true);
334 crs.beforeFirst();
337 while (crs.next()) {
338 if (crs
461 updateOriginalRow(CachedRowSet crs) argument
829 insertNewRow(CachedRowSet crs, PreparedStatement pstmt, CachedRowSetImpl crsRes) argument
929 deleteOriginalRow(CachedRowSet crs, CachedRowSetImpl crsRes) argument
1233 buildKeyDesc(CachedRowSet crs) argument
1299 updateResolvedConflictToDB(CachedRowSet crs, Connection con) argument
1395 commit(CachedRowSetImpl crs, boolean updateRowset) argument
[all...]
H A DSyncResolverImpl.java282 } //end if (crs.getObject ...) block
406 void setCachedRowSet(CachedRowSet crs) { argument
407 crsSync = (CachedRowSetImpl)crs;
416 void setCachedRowSetResolver(CachedRowSet crs){ argument
418 crsRes = (CachedRowSetImpl)crs;
465 * Internally do a crs.next() until
1892 * CachedRowSet crs = new CachedRowSetImpl();
1894 * (RowSetMetaDataImpl)crs.getMetaData();
1899 * crs.setMetaData(metaData);
2283 * <code>crs</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java422 * CachedRowSetImpl crs = new CachedRowSet(env);
1223 CachedRowSet crs = this.createCopy();
1228 return crs;
1251 CachedRowSetImpl crs;
1252 crs = (CachedRowSetImpl)this.createCopy();
1254 crs.initProperties();
1256 crs.unsetMatchColumn(crs.getMatchColumnIndexes());
1262 crs.unsetMatchColumn(crs
[all...]
H A DJoinRowSetImpl.java883 CachedRowSetImpl crs;
896 crs = (CachedRowSetImpl)vecRowSetsInJOIN.get(i);
897 cols = crs.getMetaData().getColumnCount();
898 tabName = tabName.concat(crs.getTableName());
904 (tabName+"."+crs.getMetaData().getColumnName(j++));
2000 * <code>crs</code> is a <code>JoinRowSetImpl</code> object, moves the cursor
2004 * crs.absolute(4);
2012 * If the <code>JoinRowSetImpl</code> object <code>crs</code> has five rows,
2018 * crs.absolute(-4);
2052 * <code>crs</cod
[all...]

Completed in 54 milliseconds