Uses of Interface
org.firebirdsql.gds.IscStmtHandle

Packages that use IscStmtHandle
org.firebirdsql.gds This package contains classes defining Firebird API for Java language that applications can use to access databases directly without JDBC interfaces. 
org.firebirdsql.gds.impl This package contains classes for the pluggable GDS implementations. 
org.firebirdsql.gds.impl.jni   
org.firebirdsql.gds.impl.wire   
 

Uses of IscStmtHandle in org.firebirdsql.gds
 

Methods in org.firebirdsql.gds that return IscStmtHandle
 IscStmtHandle GDS.createIscStmtHandle()
          Factory method to create a new IscStmtHandle instance specific to the implementation of this interface.
 

Methods in org.firebirdsql.gds with parameters of type IscStmtHandle
 void GDS.getSqlCounts(IscStmtHandle stmt)
          Fetch count information for a statement.
 void GDS.iscDsqlAllocateStatement(IscDbHandle dbHandle, IscStmtHandle stmtHandle)
          Allocate a dynamic SQL (DSQL) statement on the database to which IscDbHandle is attached.
 XSQLDA GDS.iscDsqlDescribe(IscStmtHandle stmtHandle, int daVersion)
          Retrieve data for a statement.
 XSQLDA GDS.iscDsqlDescribeBind(IscStmtHandle stmtHandle, int daVersion)
          Retrieve data for a bind statement.
 void GDS.iscDsqlExecute(IscTrHandle trHandle, IscStmtHandle stmtHandle, int daVersion, XSQLDA xsqlda)
          Execute a statement with only outgoing data.
 void GDS.iscDsqlExecute2(IscTrHandle trHandle, IscStmtHandle stmtHandle, int daVersion, XSQLDA inXSQLDA, XSQLDA outXSQLDA)
          Execute a statement with outgoing and incoming data.
 void GDS.iscDsqlFetch(IscStmtHandle stmt_handle, int daVersion, XSQLDA xsqlda, int fetchSize)
          Retrieve record data from a statement.
 void GDS.iscDsqlFreeStatement(IscStmtHandle stmtHandle, int option)
          Free a statement in the database that is pointed to by a valid handle.
 XSQLDA GDS.iscDsqlPrepare(IscTrHandle trHandle, IscStmtHandle stmtHandle, byte[] statement, int dialect)
          Prepare a string SQL statement for execution in the database.
 XSQLDA GDS.iscDsqlPrepare(IscTrHandle trHandle, IscStmtHandle stmtHandle, String statement, int dialect)
          Prepare a string SQL statement for execution in the database.
 XSQLDA GDS.iscDsqlPrepare(IscTrHandle trHandle, IscStmtHandle stmtHandle, String statement, String encoding, int dialect)
          Deprecated. use GDS.iscDsqlPrepare(IscTrHandle, IscStmtHandle, byte[], int)
 void GDS.iscDsqlSetCursorName(IscStmtHandle stmtHandle, String cursorName, int type)
          Set the name to be used for a given statement.
 byte[] GDS.iscDsqlSqlInfo(IscStmtHandle stmtHandle, byte[] items, int bufferLength)
          Retrieve data about a statement.
 

Uses of IscStmtHandle in org.firebirdsql.gds.impl
 

Classes in org.firebirdsql.gds.impl that implement IscStmtHandle
 class AbstractIscStmtHandle
          Abstract implementation of the IscStmtHandle interface.
 

Uses of IscStmtHandle in org.firebirdsql.gds.impl.jni
 

Methods in org.firebirdsql.gds.impl.jni that return IscStmtHandle
 IscStmtHandle BaseGDSImpl.createIscStmtHandle()
           
 

Methods in org.firebirdsql.gds.impl.jni with parameters of type IscStmtHandle
 void BaseGDSImpl.getSqlCounts(IscStmtHandle stmt_handle)
           
 void BaseGDSImpl.iscDsqlAllocateStatement(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
 XSQLDA BaseGDSImpl.iscDsqlDescribe(IscStmtHandle stmt_handle, int da_version)
           
 XSQLDA BaseGDSImpl.iscDsqlDescribeBind(IscStmtHandle stmt_handle, int da_version)
           
 void BaseGDSImpl.iscDsqlExecute(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda)
           
 void BaseGDSImpl.iscDsqlExecute2(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA in_xsqlda, XSQLDA out_xsqlda)
           
 void BaseGDSImpl.iscDsqlFetch(IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda, int fetchSize)
           
 void BaseGDSImpl.iscDsqlFreeStatement(IscStmtHandle stmt_handle, int option)
           
 XSQLDA BaseGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, byte[] statement, int dialect)
           
 XSQLDA BaseGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, String statement, int dialect)
           
 XSQLDA BaseGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, String statement, String encoding, int dialect)
           
 void BaseGDSImpl.iscDsqlSetCursorName(IscStmtHandle stmt_handle, String cursor_name, int type)
           
 byte[] BaseGDSImpl.iscDsqlSqlInfo(IscStmtHandle stmt_handle, byte[] items, int buffer_length)
           
 void JniGDSImpl.native_isc_dsql_alloc_statement2(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
abstract  void BaseGDSImpl.native_isc_dsql_alloc_statement2(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
 void JniGDSImpl.native_isc_dsql_allocate_statement(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
abstract  void BaseGDSImpl.native_isc_dsql_allocate_statement(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
 XSQLDA JniGDSImpl.native_isc_dsql_describe_bind(IscStmtHandle stmt_handle, int da_version)
           
abstract  XSQLDA BaseGDSImpl.native_isc_dsql_describe_bind(IscStmtHandle stmt_handle, int da_version)
           
 XSQLDA JniGDSImpl.native_isc_dsql_describe(IscStmtHandle stmt_handle, int da_version)
           
abstract  XSQLDA BaseGDSImpl.native_isc_dsql_describe(IscStmtHandle stmt_handle, int da_version)
           
 void JniGDSImpl.native_isc_dsql_execute2(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA in_xsqlda, XSQLDA out_xsqlda)
           
abstract  void BaseGDSImpl.native_isc_dsql_execute2(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA in_xsqlda, XSQLDA out_xsqlda)
           
 boolean JniGDSImpl.native_isc_dsql_fetch(IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda, int fetchSize)
           
abstract  boolean BaseGDSImpl.native_isc_dsql_fetch(IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda, int fetchSize)
           
 void JniGDSImpl.native_isc_dsql_free_statement(IscStmtHandle stmt_handle, int option)
           
abstract  void BaseGDSImpl.native_isc_dsql_free_statement(IscStmtHandle stmt_handle, int option)
           
 XSQLDA JniGDSImpl.native_isc_dsql_prepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, byte[] statement, int dialect)
           
abstract  XSQLDA BaseGDSImpl.native_isc_dsql_prepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, byte[] statement, int dialect)
           
 void JniGDSImpl.native_isc_dsql_set_cursor_name(IscStmtHandle stmt_handle, String cursor_name, int type)
           
abstract  void BaseGDSImpl.native_isc_dsql_set_cursor_name(IscStmtHandle stmt_handle, String cursor_name, int type)
           
 byte[] JniGDSImpl.native_isc_dsql_sql_info(IscStmtHandle stmt_handle, byte[] items, int buffer_length)
           
abstract  byte[] BaseGDSImpl.native_isc_dsql_sql_info(IscStmtHandle stmt_handle, byte[] items, int buffer_length)
           
 

Uses of IscStmtHandle in org.firebirdsql.gds.impl.wire
 

Classes in org.firebirdsql.gds.impl.wire that implement IscStmtHandle
 class isc_stmt_handle_impl
          Describe class isc_stmt_handle_impl here.
 

Methods in org.firebirdsql.gds.impl.wire that return IscStmtHandle
 IscStmtHandle AbstractJavaGDSImpl.createIscStmtHandle()
           
 

Methods in org.firebirdsql.gds.impl.wire with parameters of type IscStmtHandle
 void AbstractJavaGDSImpl.getSqlCounts(IscStmtHandle stmt_handle)
           
 void AbstractJavaGDSImpl.isc_dsql_alloc_statement2(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
 void AbstractJavaGDSImpl.iscDsqlAllocateStatement(IscDbHandle db_handle, IscStmtHandle stmt_handle)
           
 XSQLDA AbstractJavaGDSImpl.iscDsqlDescribe(IscStmtHandle stmt_handle, int da_version)
           
 XSQLDA AbstractJavaGDSImpl.iscDsqlDescribeBind(IscStmtHandle stmt_handle, int da_version)
           
 void AbstractJavaGDSImpl.iscDsqlExecute(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda)
           
 void AbstractJavaGDSImpl.iscDsqlExecute2(IscTrHandle tr_handle, IscStmtHandle stmt_handle, int da_version, XSQLDA in_xsqlda, XSQLDA out_xsqlda)
           
 void AbstractJavaGDSImpl.iscDsqlFetch(IscStmtHandle stmt_handle, int da_version, XSQLDA xsqlda, int fetchSize)
           
 void AbstractJavaGDSImpl.iscDsqlFreeStatement(IscStmtHandle stmt_handle, int option)
           
 XSQLDA AbstractJavaGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, byte[] statement, int dialect)
           
 XSQLDA AbstractJavaGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, String statement, int dialect)
           
 XSQLDA AbstractJavaGDSImpl.iscDsqlPrepare(IscTrHandle tr_handle, IscStmtHandle stmt_handle, String statement, String encoding, int dialect)
           
 void AbstractJavaGDSImpl.iscDsqlSetCursorName(IscStmtHandle stmt_handle, String cursor_name, int type)
           
 byte[] AbstractJavaGDSImpl.iscDsqlSqlInfo(IscStmtHandle stmt_handle, byte[] items, int buffer_length)
           
 



Copyright © 2001-2010. All Rights Reserved.