KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sql > rowset > spi > SyncResolver

javax.sql.rowset.spi
Interface SyncResolver

All Superinterfaces:
ResultSet, RowSet
See Also:
Source Code

static final int DELETE_ROW_CONFLICT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object getConflictValue(int index)
                        throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object getConflictValue(String columnName)
                        throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int getStatus()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int INSERT_ROW_CONFLICT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean nextConflict()
                     throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int NO_ROW_CONFLICT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean previousConflict()
                         throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setResolvedValue(int index,
                      Object obj)
                      throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setResolvedValue(String columnName,
                      Object obj)
                      throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int UPDATE_ROW_CONFLICT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags