All Packages Class Hierarchy
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Index of all Fields and Methods
- close().
Method in class jora.Session
- Close database session and release all resources holded by session.
- commit().
Method in class jora.Session
- Commit makes all changes made since the previous
commit/rollback permanent and releases any database locks
currently held by the Connection.
- connection.
Variable in class jora.Session
-
- delete().
Method in class jora.Cursor
- Delete current record pointed by cursor.
- delete(Object).
Method in class jora.Table
- Delete record with specified value of primary key from the table.
- execute(String).
Method in class jora.Session
- Execute a SQL INSERT, UPDATE or DELETE statement.
- fieldSeparator.
Static variable in class jora.Table
- Spearator of name components of compound field.
- handleSQLException(SQLException).
Method in class jora.Session
- Handler of database session errors.
- insert(Object).
Method in class jora.Table
- Insert new record in the table.
- next().
Method in class jora.Cursor
- A cursor is initially positioned before its first row; the
first call to next makes the first row the current row; the
second call makes the second row the current row, etc.
- open(String, String, String).
Method in class jora.Session
- Open database session.
- queryAllByExample(Object).
Method in class jora.Table
- Select records from specified and derived database tables using
obj object as template for selection.
- queryByExample(Object).
Method in class jora.Table
- Select records from database table using obj object as
template for selection.
- rollback().
Method in class jora.Session
- Rollback drops all changes made since the previous
commit/rollback and releases any database locks currently held
by the Connection.
- select(String).
Method in class jora.Table
- Select records from database table according to search condition
- selectAll(String).
Method in class jora.Table
- Select records from specified and derived database tables
- Session().
Constructor for class jora.Session
- Session consructor for ODBC bridge driver
- Session(String).
Constructor for class jora.Session
- Session consructor
- Table(String).
Constructor for class jora.Table
- Constructor of table with "key" and "session" parameters inherited
from base table.
- Table(String, Session).
Constructor for class jora.Table
- Constructor of table without explicit key specification.
- Table(String, Session, String).
Constructor for class jora.Table
- Constructor for table object.
- Table(String, String, Session, String).
Constructor for class jora.Table
- Constructor for table object.
- toArray().
Method in class jora.Cursor
- Store all objects returned by SELECT query into array of Object.
- toArray(int).
Method in class jora.Cursor
- Extracts no more than maxElements records from database and
store them into array.
- update().
Method in class jora.Cursor
- Update current record pointed by cursor.
- update(Object).
Method in class jora.Table
- Update record in the table using table's primary key to locate
record in the table and values of fields of specified object obj
to alter record fields.