Class Hierarchy Previous Next Index
java.lang.Object | +----COM.cloudscape.vti.VTITemplate | +----COM.cloudscape.synchronization.TransactionListVTI
COLUMN NAME | DATATYPE | DESCRIPTION |
---|---|---|
TRAN_NUMBER | int | transaction number |
ORIGINATING_DBID | char(36) | id of database where the transaction originated |
ORIGINATING_COMMIT_INSTANT | DatabaseInstant | marks when the transaction originally committed |
SUMMARY | String | brief description of transaction |
STATEMENT_LIST | ColumnResultSet | a StatementListVTI holding the statements in the transaction |
SELECT * FROM new COM.cloudscape.synchronization.TransactionListVTI ( 'syserrors', '8000001c-00d0-fd77-3ed8-000a0a0b1900', 20 ) T_LISTHere's the SQL for creating a TransactionListVTI on a REFRESH request message. 'HttpTrace0' is the name of the file dumped by the -Dcloudscape.DataComm.trace=true flag:
SELECT * FROM new COM.cloudscape.synchronization.TransactionListVTI( 'refresh request', 'HttpTrace0', 20 ) TLHere's the SQL for creating a TransactionListVTI on a REFRESH reply message. 'HttpTrace2' is the name of the file dumped by the -Dcloudscape.DataComm.trace=true flag:
SELECT * FROM new COM.cloudscape.synchronization.TransactionListVTI( 'refresh reply', 'HttpTrace2', 20 ) T_LIST
public TransactionListVTI(java.lang.String sourceKind, java.lang.String bucket, int summaryColumnLength) throws java.sql.SQLException
sourceKind
- kind of bucket: "syserrors", "refresh request", "refresh reply"
bucket
- bucket holding replication transactions. E.g., the id of a SYSERRORS tuple or
the name of a flat file
summaryColumnLength
- display length of SUMMARY column, both in this VTI and in any nested StatementListVTIs
public static ColumnResultSet printFailedTransaction(java.lang.String errorID)
errorID
- Key of the SYSERRORS row which holds the failed transaction.
public static ColumnResultSet printFailedTransaction(java.lang.String errorID, int summaryColumnLength)
errorID
- Key of the SYSERRORS row which holds the failed transaction.
summaryColumnLength
- Display length of SUMMARY column, both in this VTI and in any nested StatementListVTIs
public boolean wasNull() throws java.sql.SQLException
public boolean next() throws java.sql.SQLException
public java.sql.ResultSetMetaData getMetaData()
public int getInt(int columnIndex) throws java.sql.SQLException
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
public void close() throws java.sql.SQLException
Class Hierarchy Previous Next Index