org.mobicents.slee.resource.jdbc.event
Interface StatementEvent

All Known Subinterfaces:
StatementResultSetEvent, StatementSQLExceptionEvent, StatementUnknownResultEvent, StatementUpdateCountEvent

public interface StatementEvent

An event which provides the results for the execution of a Statement.

Author:
martins

Method Summary
 java.lang.Integer getAutoGeneratedKeys()
          Retrieves the autoGeneratedKeys parameter, which may be used in certain statement executions.
 int[] getColumnIndexes()
          Retrieves the columnIndexes parameter, which may be used in certain statement executions.
 java.lang.String[] getColumnNames()
          Retrieves the columnNames parameter, which may be used in certain statement executions.
 java.lang.String getSQL()
          Retrieves the sql executed.
 java.sql.Statement getStatement()
          Retrieves the executed Statement#.
 

Method Detail

getStatement

java.sql.Statement getStatement()
Retrieves the executed Statement#.

Returns:

getSQL

java.lang.String getSQL()
Retrieves the sql executed.

Returns:

getAutoGeneratedKeys

java.lang.Integer getAutoGeneratedKeys()
Retrieves the autoGeneratedKeys parameter, which may be used in certain statement executions.

Returns:
null if such execution parameter was not used.

getColumnIndexes

int[] getColumnIndexes()
Retrieves the columnIndexes parameter, which may be used in certain statement executions.

Returns:
null if such execution parameter was not used.

getColumnNames

java.lang.String[] getColumnNames()
Retrieves the columnNames parameter, which may be used in certain statement executions.

Returns:
null if such execution parameter was not used.


Copyright © 2011. All Rights Reserved.