|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--com.jdc.lang.Object
|
+--com.jdc.rdb.sql.dml.DMLStatus
|
+--com.jdc.rdb.sql.dml.select.SelectStatus
SelectStatus represents the execution status of a
Select SQL statement.
This class provides the following Select statement execution
status information:
Select statement execution was successful or not.Database Table rows selected if successful.Database Table Row or Rows selected if successful.SQLException that occurred if not successful.
Select| Field Summary |
| Fields inherited from class com.jdc.lang.Object |
string |
| Method Summary | |
SQLException |
getException()
Returns the Select statement exception, if one occurred. |
Row |
getRow()
Returns the first Database Table
Row selected. |
int |
getRowCount()
Returns the number of Database Table
rows selected. |
Rows |
getRows()
Returns the Database Table
Rows selected. |
boolean |
isSuccessful()
Returns true if the Select statement execution is
successful. |
| Methods inherited from class com.jdc.rdb.sql.dml.DMLStatus |
getSQL, getStatus |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
public SQLException getException()
Select statement exception, if one occurred.
Select statement exception.public boolean isSuccessful()
true if the Select statement execution is
successful.
isSuccessful in class DMLStatusTrue if the Select statement execution is successful. False if the Select statement execution is not successful.public Row getRow()
Database Table
Row selected. This is a convenience method for
Select statements that should return
only one (1) row.
Database Table Row selected.public Rows getRows()
Database Table
Rows selected.
Database Table Rows selected.public int getRowCount()
Database Table
rows selected.
Database Table rows selected.
|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||