C# Class Mono.Data.Sqlite.UnsafeNativeMethods

Datei anzeigen Open project: rubenv/tripod Class Usage Examples

Private Methods

Method Description
UnsafeNativeMethods ( ) : System
sqlite3_aggregate_context ( IntPtr context, int nBytes ) : IntPtr
sqlite3_aggregate_count ( IntPtr context ) : int
sqlite3_bind_blob ( IntPtr stmt, int index, Byte value, int nSize, IntPtr nTransient ) : int
sqlite3_bind_double ( IntPtr stmt, int index, double value ) : int
sqlite3_bind_int ( IntPtr stmt, int index, int value ) : int
sqlite3_bind_int64 ( IntPtr stmt, int index, long value ) : int
sqlite3_bind_null ( IntPtr stmt, int index ) : int
sqlite3_bind_parameter_count ( IntPtr stmt ) : int
sqlite3_bind_parameter_index ( IntPtr stmt, byte strName ) : int
sqlite3_bind_parameter_name ( IntPtr stmt, int index ) : IntPtr
sqlite3_bind_text ( IntPtr stmt, int index, byte value, int nlen, IntPtr pvReserved ) : int
sqlite3_bind_text16 ( IntPtr stmt, int index, string value, int nlen, int nTransient ) : int
sqlite3_busy_timeout ( IntPtr db, int ms ) : int
sqlite3_changes ( IntPtr db ) : int
sqlite3_close ( IntPtr db ) : int
sqlite3_column_blob ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_bytes ( IntPtr stmt, int index ) : int
sqlite3_column_count ( IntPtr stmt ) : int
sqlite3_column_database_name ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_database_name16 ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_decltype ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_decltype16 ( IntPtr stmt, int index, int &len ) : IntPtr
sqlite3_column_double ( IntPtr stmt, int index ) : double
sqlite3_column_int ( IntPtr stmt, int index ) : int
sqlite3_column_int64 ( IntPtr stmt, int index ) : System.Int64
sqlite3_column_name ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_name16 ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_origin_name ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_origin_name16 ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_table_name ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_table_name16 ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_text ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_text16 ( IntPtr stmt, int index ) : IntPtr
sqlite3_column_type ( IntPtr stmt, int index ) : TypeAffinity
sqlite3_commit_hook ( IntPtr db, SqliteCommitCallback func ) : IntPtr
sqlite3_compressfile ( string fileName ) : int
sqlite3_create_collation ( IntPtr db, byte strName, int eTextRep, IntPtr ctx, SqliteCollation fcompare ) : int
sqlite3_create_collation16 ( IntPtr db, string strName, int eTextRep, IntPtr ctx, SqliteCollation fcompare ) : int
sqlite3_create_function ( IntPtr db, byte strName, int nArgs, int eTextRep, IntPtr app, SqliteCallback func, SqliteCallback fstep, SqliteFinalCallback ffinal ) : int
sqlite3_create_function16 ( IntPtr db, string strName, int nArgs, int eTextRep, IntPtr app, SqliteCallback func, SqliteCallback funcstep, SqliteFinalCallback funcfinal ) : int
sqlite3_cursor_rowid ( IntPtr stmt, int cursor, long &rowid ) : int
sqlite3_decompressfile ( string fileName ) : int
sqlite3_decryptfile ( string fileName ) : int
sqlite3_encryptedstatus ( string fileName, int &fileStatus ) : int
sqlite3_encryptfile ( string fileName ) : int
sqlite3_errmsg ( IntPtr db ) : IntPtr
sqlite3_errmsg16 ( IntPtr db ) : IntPtr
sqlite3_exec ( IntPtr db, byte strSql, IntPtr pvCallback, IntPtr pvParam, IntPtr &errMsg, int &len ) : int
sqlite3_finalize ( IntPtr stmt ) : int
sqlite3_free ( IntPtr p ) : void
sqlite3_interrupt ( IntPtr db ) : void
sqlite3_key ( IntPtr db, byte key, int keylen ) : int
sqlite3_last_insert_rowid ( IntPtr db ) : long
sqlite3_libversion ( ) : IntPtr
sqlite3_open ( byte utf8Filename, IntPtr &db ) : int
sqlite3_open16 ( string utf16Filename, IntPtr &db ) : int
sqlite3_prepare ( IntPtr db, IntPtr pSql, int nBytes, IntPtr &stmt, IntPtr &ptrRemain ) : int
sqlite3_prepare16_v2 ( IntPtr db, IntPtr pSql, int sqlLen, IntPtr &stmt, IntPtr &ptrRemain ) : int
sqlite3_prepare_v2 ( IntPtr db, IntPtr pSql, int nBytes, IntPtr &stmt, IntPtr &ptrRemain ) : int
sqlite3_rekey ( IntPtr db, byte key, int keylen ) : int
sqlite3_reset ( IntPtr stmt ) : int
sqlite3_result_blob ( IntPtr context, byte value, int nSize, IntPtr pvReserved ) : void
sqlite3_result_double ( IntPtr context, double value ) : void
sqlite3_result_error ( IntPtr context, byte strErr, int nLen ) : void
sqlite3_result_error16 ( IntPtr context, string strName, int nLen ) : void
sqlite3_result_int ( IntPtr context, int value ) : void
sqlite3_result_int64 ( IntPtr context, Int64 value ) : void
sqlite3_result_null ( IntPtr context ) : void
sqlite3_result_text ( IntPtr context, byte value, int nLen, IntPtr pvReserved ) : void
sqlite3_result_text16 ( IntPtr context, string strName, int nLen, IntPtr pvReserved ) : void
sqlite3_rollback_hook ( IntPtr db, SqliteRollbackCallback func ) : IntPtr
sqlite3_sleep ( uint dwMilliseconds ) : void
sqlite3_step ( IntPtr stmt ) : int
sqlite3_table_column_metadata ( IntPtr db, byte dbName, byte tblName, byte colName, IntPtr &ptrDataType, IntPtr &ptrCollSeq, int &notNull, int &primaryKey, int &autoInc ) : int
sqlite3_table_cursor ( IntPtr stmt, int db, int tableRootPage ) : int
sqlite3_update_hook ( IntPtr db, SqliteUpdateCallback func ) : IntPtr
sqlite3_value_blob ( IntPtr p ) : IntPtr
sqlite3_value_bytes ( IntPtr p ) : int
sqlite3_value_double ( IntPtr p ) : double
sqlite3_value_int ( IntPtr p ) : int
sqlite3_value_int64 ( IntPtr p ) : Int64
sqlite3_value_text ( IntPtr p ) : IntPtr
sqlite3_value_text16 ( IntPtr p ) : IntPtr
sqlite3_value_type ( IntPtr p ) : TypeAffinity