Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)

Uses of Class
com.lapetus_ltd.api.db.control.TLptsStatement

Packages that use TLptsStatement
com.lapetus_ltd.api.db.control This package contains all the classes for controlling the connections, statements and row sets. 
com.lapetus_ltd.api.db.gui.dialogs The connection and data view dialogs are available in here. 
 

Uses of TLptsStatement in com.lapetus_ltd.api.db.control
 

Methods in com.lapetus_ltd.api.db.control that return TLptsStatement
 TLptsStatement TLptsStatement.findTopPrimaryStatement()
          Gets the top primary statement (level 1).
 TLptsStatement TLptsRowEvent.getStatement()
           Gets a reference to the statement we executed to get our RowSet.
 TLptsStatement TLptsRowSetEvent.getStatement()
           Gets the executed statement for this rowset operation.
static TLptsStatement TLptsFactoryStatement.getStatement(java.lang.String id)
          Gets a statement by it's id.
 

Methods in com.lapetus_ltd.api.db.control that return types with arguments of type TLptsStatement
static java.util.List<TLptsStatement> TLptsFactoryStatement.getStatementList()
           Gets the statement list for all connections.
static java.util.List<TLptsStatement> TLptsFactoryStatement.getStatementList(TLptsConnection connection)
           Gets all the statements for a connection.
 

Methods in com.lapetus_ltd.api.db.control with parameters of type TLptsStatement
static void TLptsFactoryStatement.addToStatementList(TLptsStatement statement)
          Adds a new statement to the statement list.
static void TLptsFactoryRowSet.executeDynamicDelete(TLptsStatement statement)
          Deletes Rows from a Database Table.
static void TLptsFactoryRowSet.executeDynamicInsert(TLptsStatement statement)
          Inserts Data to a Database Table.
static void TLptsFactoryRowSet.executeDynamicUpdate(TLptsStatement statement)
          Updates a table in a DataBase.
static void TLptsFactoryStatement.executeOtherStatement(TLptsStatement stmt)
          Executes a statement other than SELECT, INSERT, UPDATE or DELETE, and which has no resultset.
static void TLptsFactoryRowSet.executeSelectStatement(TLptsStatement stmt, int first, int noOfRecords, boolean isLimitAllRowSets)
          Executes a SELECT statement and generates one or many rowsets (depending on dynamic and primary relationships).
static boolean TLptsFactoryStatement.initiatePrepareStatement(TLptsStatement lptsStatement)
          Initiates a Prepare Statement on the TLptsStatement.
 void ILptsFactoryStatementListener.newStatementCreated(TLptsConnection connection, TLptsStatement statement)
          This informs the implementation that a new statements has been successfully created.
 void ILptsFactoryStatementListener.removedAndClosedStatement(TLptsConnection connection, TLptsStatement statement)
          The TLptsFactoryStatement.removeStatement(TLptsStatement) has been called for removal of the statement from the system.
static void TLptsFactoryStatement.removeStatement(TLptsStatement stmt)
          Removes a statement from the statement list.
 

Constructors in com.lapetus_ltd.api.db.control with parameters of type TLptsStatement
TLptsRowEvent(java.util.List<java.lang.Object> rowObjectList, java.util.List<java.lang.String> columnNameList, java.util.List<java.lang.Integer> columnTypeList, java.util.List<byte[]> byteValueList, TLptsRowEvent.EVENT_TYPE eventType, TLptsStatement statement, java.lang.String primaryStatementId, java.lang.String rowSetId, int currentRowNo)
           Constructor for RowSet Events.
TLptsRowSet(TLptsStatement statement, java.sql.ResultSet resultSet)
           Constructor for a TLptsRowSet.
TLptsRowSet(TLptsStatement statement, javax.sql.RowSet rowSet)
           Constructor for a TLptsRowSet.
TLptsRowSetEvent(TLptsStatement statement, TLptsRowSet rowSet, TLptsRowSetEvent.EVENT_TYPE eventType, java.lang.String primaryStatementId, java.lang.Integer rows, java.lang.Integer objects, java.util.List<java.lang.String> rowSetsNotFinished)
           Default Constructor for a Row Set Event.
 

Uses of TLptsStatement in com.lapetus_ltd.api.db.gui.dialogs
 

Constructors in com.lapetus_ltd.api.db.gui.dialogs with parameters of type TLptsStatement
TLptsViewDataDialog(java.lang.String title, TLptsStatement statement, int first, int rows, java.awt.Component relative)
          Display RowSet data from a statement in a new frame.
 



Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)