Uses of Class
org.sqlite.swig.SWIGTYPE_p_sqlite3

Packages that use SWIGTYPE_p_sqlite3
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
org.sqlite.swig Provides the classes necessary to invoke a SQLite C Interface API. 
 

Uses of SWIGTYPE_p_sqlite3 in org.sqlite
 

Methods in org.sqlite that return SWIGTYPE_p_sqlite3
 SWIGTYPE_p_sqlite3 Statement.getDbHandle()
          invoke sqlite3_db_handle() function.
 

Uses of SWIGTYPE_p_sqlite3 in org.sqlite.jdbc
 

Constructors in org.sqlite.jdbc with parameters of type SWIGTYPE_p_sqlite3
JdbcSQLException(int resultCode, SWIGTYPE_p_sqlite3 db)
           
 

Uses of SWIGTYPE_p_sqlite3 in org.sqlite.swig
 

Methods in org.sqlite.swig that return SWIGTYPE_p_sqlite3
static SWIGTYPE_p_sqlite3 SQLite3.get_p_sqlite3(SWIGTYPE_p_p_sqlite3 self)
           
static SWIGTYPE_p_sqlite3 SQLite3.new_p_sqlite3(long cPtr)
           
static SWIGTYPE_p_sqlite3 SQLite3.sqlite3_db_handle(SWIGTYPE_p_sqlite3_stmt arg0)
           
 

Methods in org.sqlite.swig with parameters of type SWIGTYPE_p_sqlite3
protected static long SWIGTYPE_p_sqlite3.getCPtr(SWIGTYPE_p_sqlite3 obj)
           
static int SQLite3.sqlite3_busy_handler(SWIGTYPE_p_sqlite3 db, BusyHandler busy)
           
static int SQLite3.sqlite3_busy_timeout(SWIGTYPE_p_sqlite3 arg0, int ms)
           
static int SQLite3.sqlite3_changes(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_clear_authorizer(SWIGTYPE_p_sqlite3 db, Authorizer auth)
           
static int SQLite3.sqlite3_clear_busy_handler(SWIGTYPE_p_sqlite3 db, BusyHandler busy)
           
static int SQLite3.sqlite3_clear_collation_needed(SWIGTYPE_p_sqlite3 db, CollationNeededHandler needed)
           
static void SQLite3.sqlite3_clear_commit_hook(SWIGTYPE_p_sqlite3 arg0)
           
static void SQLite3.sqlite3_clear_profile(SWIGTYPE_p_sqlite3 arg0)
           
static void SQLite3.sqlite3_clear_progress_handler(SWIGTYPE_p_sqlite3 db, ProgressHandler prog)
           
static void SQLite3.sqlite3_clear_rollback_hook(SWIGTYPE_p_sqlite3 arg0)
           
static void SQLite3.sqlite3_clear_trace(SWIGTYPE_p_sqlite3 arg0)
           
static void SQLite3.sqlite3_clear_update_hook(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_close(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_collation_needed(SWIGTYPE_p_sqlite3 db, CollationNeededHandler needed)
           
static void SQLite3.sqlite3_commit_hook(SWIGTYPE_p_sqlite3 db, CommitHook hook)
           
static int SQLite3.sqlite3_create_collation(SWIGTYPE_p_sqlite3 db, Collator col)
           
static int SQLite3.sqlite3_create_function(SWIGTYPE_p_sqlite3 db, Function func)
           
static int SQLite3.sqlite3_drop_collation(SWIGTYPE_p_sqlite3 db, Collator col)
           
static int SQLite3.sqlite3_drop_function(SWIGTYPE_p_sqlite3 db, Function func)
           
static int SQLite3.sqlite3_errcode(SWIGTYPE_p_sqlite3 db)
           
static java.lang.String SQLite3.sqlite3_errmsg(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_exec(SWIGTYPE_p_sqlite3 db, java.lang.String sql)
           
static int SQLite3.sqlite3_exec(SWIGTYPE_p_sqlite3 db, java.lang.String sql, ExecCallback callback, SWIGTYPE_p_p_char errmsg)
           
static int SQLite3.sqlite3_get_autocommit(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_get_table(SWIGTYPE_p_sqlite3 db, java.lang.String sql, java.util.List<java.lang.String[]> result, SWIGTYPE_p_p_char errmsg)
           
static void SQLite3.sqlite3_interrupt(SWIGTYPE_p_sqlite3 arg0)
           
static long SQLite3.sqlite3_last_insert_rowid(SWIGTYPE_p_sqlite3 arg0)
           
static int SQLite3.sqlite3_prepare_v1(SWIGTYPE_p_sqlite3 arg0, java.lang.String arg1, int arg2, SWIGTYPE_p_p_sqlite3_stmt arg3, java.lang.Object[] arg4)
           
static int SQLite3.sqlite3_prepare(SWIGTYPE_p_sqlite3 db, java.lang.String zSql, int nBytes, SWIGTYPE_p_p_sqlite3_stmt ppStmt, java.lang.String[] pzTail)
          invoke sqlite3_prepare_v1() method.
static void SQLite3.sqlite3_profile(SWIGTYPE_p_sqlite3 db, Profiler prof)
           
static void SQLite3.sqlite3_progress_handler(SWIGTYPE_p_sqlite3 db, ProgressHandler prog)
           
static void SQLite3.sqlite3_rollback_hook(SWIGTYPE_p_sqlite3 db, RollbackHook hook)
           
static int SQLite3.sqlite3_set_authorizer(SWIGTYPE_p_sqlite3 db, Authorizer auth)
           
static int SQLite3.sqlite3_table_column_metadata(SWIGTYPE_p_sqlite3 db, java.lang.String zDbName, java.lang.String zTableName, java.lang.String zColumnName, SWIGTYPE_p_p_char pzDataType, SWIGTYPE_p_p_char pzCollSeq, SWIGTYPE_p_int pNotNull, SWIGTYPE_p_int pPrimaryKey, SWIGTYPE_p_int pAutoinc)
           
static int SQLite3.sqlite3_total_changes(SWIGTYPE_p_sqlite3 arg0)
           
static void SQLite3.sqlite3_trace(SWIGTYPE_p_sqlite3 db, Tracer tracer)
           
static void SQLite3.sqlite3_update_hook(SWIGTYPE_p_sqlite3 db, UpdateHook hook)