|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SQLPoemException | |
---|---|
org.melati.poem | Persistent Object Engine for Melati. |
org.melati.poem.dbms | Melati drivers for assorted JDBC compliant DBMS. |
Uses of SQLPoemException in org.melati.poem |
---|
Subclasses of SQLPoemException in org.melati.poem | |
---|---|
class |
ExecutingSQLPoemException
Thrown when there is a problem executing an SQL command. |
Methods in org.melati.poem that throw SQLPoemException | |
---|---|
int |
JdbcTable.count()
|
int |
Table.count()
|
int |
JdbcTable.count(String whereClause)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
int |
Table.count(String whereClause)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
int |
JdbcTable.count(String whereClause,
boolean includeDeleted)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
int |
Table.count(String whereClause,
boolean includeDeleted)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
int |
JdbcTable.count(String whereClause,
boolean includeDeleted,
boolean excludeUnselectable)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
int |
Table.count(String whereClause,
boolean includeDeleted,
boolean excludeUnselectable)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
boolean |
JdbcTable.exists(String whereClause)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
boolean |
Table.exists(String whereClause)
It is the programmer's responsibility to ensure that the where clause is suitable for the target DBMS. |
Enumeration |
Selectable.selection()
All the Objects. |
Enumeration<Persistent> |
JdbcTable.selection()
All the objects in the table. |
Enumeration<Persistent> |
Table.selection()
All the objects in the table. |
Enumeration |
JdbcTable.selection(Persistent criteria)
Return a selection of rows given an exemplar. |
Enumeration<Persistent> |
Table.selection(Persistent criteria)
Return a selection of rows given an exemplar. |
Enumeration |
JdbcTable.selection(Persistent criteria,
String orderByClause)
Return a selection of rows given arguments specifying a query. |
Enumeration<Persistent> |
Table.selection(Persistent criteria,
String orderByClause)
Return a selection of rows given arguments specifying a query. |
Enumeration |
JdbcTable.selection(Persistent criteria,
String orderByClause,
boolean includeDeleted,
boolean excludeUnselectable)
Return a selection of rows given arguments specifying a query. |
Enumeration<Persistent> |
Table.selection(Persistent criteria,
String orderByClause,
boolean includeDeleted,
boolean excludeUnselectable)
Return a selection of rows given arguments specifying a query. |
Enumeration |
JdbcTable.selection(String whereClause)
A SELECTion of objects from the table meeting given criteria. |
Enumeration<Persistent> |
Table.selection(String whereClause)
A SELECTion of objects from the table meeting given criteria. |
Enumeration<Persistent> |
JdbcTable.selection(String whereClause,
String orderByClause,
boolean includeDeleted)
A SELECTion of objects from the table meeting given criteria, possibly including those flagged as deleted. |
Enumeration<Persistent> |
Table.selection(String whereClause,
String orderByClause,
boolean includeDeleted)
A SELECTion of objects from the table meeting given criteria, possibly including those flagged as deleted. |
ResultSet |
Database.sqlQuery(String sql)
Run an arbitrary SQL query against the database. |
int |
Database.sqlUpdate(String sql)
Run an arbitrary SQL update against the database. |
Enumeration<Integer> |
JdbcTable.troidSelection(String whereClause,
String orderByClause,
boolean includeDeleted)
A SELECTion of troids of objects from the table meeting given criteria. |
Enumeration<Integer> |
Table.troidSelection(String whereClause,
String orderByClause,
boolean includeDeleted)
A SELECTion of troids of objects from the table meeting given criteria. |
Uses of SQLPoemException in org.melati.poem.dbms |
---|
Subclasses of SQLPoemException in org.melati.poem.dbms | |
---|---|
class |
DuplicateKeySQLPoemException
Thrown when an attempt to insert a value which is already present in a column with a unique index is made. |
Methods in org.melati.poem.dbms that return SQLPoemException | |
---|---|
SQLPoemException |
AnsiStandard.exceptionForUpdate(Table table,
PreparedStatement ps,
boolean insert,
SQLException e)
Version of previous method for PreparedStatements. |
SQLPoemException |
Dbms.exceptionForUpdate(Table table,
PreparedStatement ps,
boolean insert,
SQLException e)
Version of previous method for PreparedStatements. |
SQLPoemException |
MySQL.exceptionForUpdate(Table table,
String sql,
boolean insert,
SQLException e)
An exception appropriate for expressing what really went wrong during a write to the db. |
SQLPoemException |
AnsiStandard.exceptionForUpdate(Table table,
String sql,
boolean insert,
SQLException e)
An exception appropriate for expressing what really went wrong during a write to the db. |
SQLPoemException |
Postgresql.exceptionForUpdate(Table table,
String sql,
boolean insert,
SQLException e)
An exception appropriate for expressing what really went wrong during a write to the db. |
SQLPoemException |
Dbms.exceptionForUpdate(Table table,
String sql,
boolean insert,
SQLException e)
An exception appropriate for expressing what really went wrong during a write to the db. |
|
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |