Powered by SmartDoc

Relaxer Table View Interface

Relaxer Table View Interface (RTVI) is a common interface for RTO and RTVO. RTVI defines methods shown in Table 14.4.1[Relaxer Table View Interface method list].

Relaxer Table View Interface method list
Signature Function
boolean getJdbc2() Gets whether or not the JDBC2 facility is available.
void setJdbc2(boolean jdbc2) Sets whether or not the JDBC2 facility is available.
String getQuoteId() Gets a quote symbol to quote ids in SQL.
void setQuoteId(String quoteId) Sets a quote symbol to quote ids in SQL.
String getQuoteWhere() Gets a quote symbol to quote a where clause in SQL.
void setQuoteWhere(String quoteWhere) Sets a quote symbol to quote a where clause in SQL.
String getQuoteIdInWhere() Gets a quote symbol to quote ids in a where clause in SQL.
void setQuoteIdInWhere(String quoteIdInWhere) Sets a quote symbol to quote ids in a where clause in SQL.
java.sql.Connection getConnection() Gets the JDBC connection.
String getSelectClause() Gets the select clause to be used in the RTO.
boolean getAutoCommit() Gets whether or not auto-commit is available.
void setAutoCommit(boolean autoCommit) Sets whether or not auto-commit is available.
void commit() Commits the transaction.
void rollback() Aborts the transaction.
boolean getTransactionIsolation() Gets the transaction isolation level.
void setTransactionIsolation(boolean transactionIsolation) Sets the transaction isolation level.
void dispose() Release the resources used by the RTO.
void close() Closes the RTO.
boolean isClosed() Tests whether or not the RTO is closed.
org.w3c.dom.Document[] selectAsDocuments() Selects all records as XML documents.
RelaxerObject[] select() Selects all records as ROs.
org.w3c.dom.Element[] selectAsElements(org.w3c.dom.Document doc) Selects all records as XML elements.
org.w3c.dom.Document selectAsDocument() Selects all records as an XML document.
org.w3c.dom.Document[] selectAsDocuments(String where) Selects all records specified by the where cluase as XML documents.
RelaxerObject[] select(String where) Selects all records specified by the where cluase as ROs.
org.w3c.dom.Element[] selectAsElements(org.w3c.dom.Document doc, String where) Selects all records specified by the where cluase as XML elements.
org.w3c.dom.Document selectAsDocument(String where) Selects all records specified by the where cluase as an XML element.
org.w3c.dom.Document[] selectByExpressionAsDocuments(String expression) Selects all records specified by the expression as XML documents.
RelaxerObject[] selectByExpression(String expression) Selects all records specified by the expression as ROs.
org.w3c.dom.Element[] selectByExpressionAsElements(org.w3c.dom.Document doc, String expression) Selects all records specified by the expression as XML elements.
org.w3c.dom.Document selectByExpressionAsDocument(String expression) Selects all records specified by the expression cluase as an XML element.
RelaxerTableListObject selectAsList() Selects all records as an RTLO.
RelaxerTableListObject selectAsList(String where) Selects all records specified by the where cluase as an RTLO.
RelaxerTableListObject selectByExpressionAsList(String expression) Selects all records specified by the expression as an RTLO.