public interface SQLStatementIF
Modifier and Type | Method and Description |
---|---|
ResultSet |
executeQuery(Connection conn)
INTERNAL: Execute the statement without any parameters and return
a JDBC result set.
|
ResultSet |
executeQuery(Connection conn,
Map params)
INTERNAL: Execute the statement with parameters and return a JDBC
result set.
|
ResultSet |
executeQuery(Connection conn,
Object[] params)
INTERNAL: Execute the statement with parameters and return a JDBC
result set.
|
TicketIF |
getTicket() |
int |
getWidth()
INTERNAL: Returns the number of fields that will be selected by
the statement.
|
Object |
readValue(TicketIF ticket,
ResultSet rs,
int index,
boolean lookup_identities)
INTERNAL: Read the field value of the specified index from the
current row in the result set.
|
Object[] |
readValues(TicketIF ticket,
ResultSet rs,
boolean lookup_identities)
INTERNAL: Reads all the field values from the current row in the
result set.
|
Object[] |
readValues(TicketIF ticket,
ResultSet rs,
Object[] values,
boolean lookup_identities)
INTERNAL: Reads all the field values from the current row into
the specified value array.
|
void |
setAccessRegistrar(AccessRegistrarIF registrar) |
void |
setObjectAccess(ObjectAccessIF oaccess) |
void setObjectAccess(ObjectAccessIF oaccess)
void setAccessRegistrar(AccessRegistrarIF registrar)
TicketIF getTicket()
int getWidth()
ResultSet executeQuery(Connection conn) throws Exception
Exception
ResultSet executeQuery(Connection conn, Object[] params) throws Exception
Exception
ResultSet executeQuery(Connection conn, Map params) throws Exception
Exception
Object readValue(TicketIF ticket, ResultSet rs, int index, boolean lookup_identities) throws Exception
If the field is an identity field or a reference field, the object identity will be extracted and the identity will be used to look up the object in the transaction.
Exception
Object[] readValues(TicketIF ticket, ResultSet rs, Object[] values, boolean lookup_identities) throws Exception
Exception