C# Class SQLite.Net.Platform.WinRT.SQLiteApiWinRT

Inheritance: ISQLiteApiExt
Exibir arquivo Open project: Rhapsody/SQLite.Net-PCL Class Usage Examples

Public Methods

Method Description
BackupFinish ( IDbBackupHandle handle ) : System.Result
BackupInit ( IDbHandle destHandle, string destName, IDbHandle srcHandle, string srcName ) : IDbBackupHandle
BackupPagecount ( IDbBackupHandle handle ) : int
BackupRemaining ( IDbBackupHandle handle ) : int
BackupStep ( IDbBackupHandle handle, int pageCount ) : System.Result
BindBlob ( IDbStatement stmt, int index, byte val, int n, IntPtr free ) : int
BindDouble ( IDbStatement stmt, int index, double val ) : int
BindInt ( IDbStatement stmt, int index, int val ) : int
BindInt64 ( IDbStatement stmt, int index, long val ) : int
BindNull ( IDbStatement stmt, int index ) : int
BindParameterIndex ( IDbStatement stmt, string name ) : int
BindText16 ( IDbStatement stmt, int index, string val, int n, IntPtr free ) : int
BusyTimeout ( IDbHandle db, int milliseconds ) : System.Result
Changes ( IDbHandle db ) : int
Close ( IDbHandle db ) : System.Result
ColumnBlob ( IDbStatement stmt, int index ) : byte[]
ColumnByteArray ( IDbStatement stmt, int index ) : byte[]
ColumnBytes ( IDbStatement stmt, int index ) : int
ColumnCount ( IDbStatement stmt ) : int
ColumnDouble ( IDbStatement stmt, int index ) : double
ColumnInt ( IDbStatement stmt, int index ) : int
ColumnInt64 ( IDbStatement stmt, int index ) : long
ColumnName16 ( IDbStatement stmt, int index ) : string
ColumnText16 ( IDbStatement stmt, int index ) : string
ColumnType ( IDbStatement stmt, int index ) : ColType
Config ( ConfigOption option ) : System.Result
EnableLoadExtension ( IDbHandle db, int onoff ) : System.Result
Errmsg16 ( IDbHandle db ) : string
ExtendedErrCode ( IDbHandle db ) : ExtendedResult
Finalize ( IDbStatement stmt ) : System.Result
Initialize ( ) : System.Result
LastInsertRowid ( IDbHandle db ) : long
LibVersionNumber ( ) : int
Open ( byte filename, IDbHandle &db, int flags, IntPtr zvfs ) : System.Result
Prepare2 ( IDbHandle db, string query ) : IDbStatement
Reset ( IDbStatement stmt ) : System.Result
SQLiteApiWinRT ( string tempFolderPath = null ) : System
Shutdown ( ) : System.Result
Sleep ( int millis ) : int
SourceID ( ) : string
Step ( IDbStatement stmt ) : System.Result

Method Details

BackupFinish() public method

public BackupFinish ( IDbBackupHandle handle ) : System.Result
handle IDbBackupHandle
return System.Result

BackupInit() public method

public BackupInit ( IDbHandle destHandle, string destName, IDbHandle srcHandle, string srcName ) : IDbBackupHandle
destHandle IDbHandle
destName string
srcHandle IDbHandle
srcName string
return IDbBackupHandle

BackupPagecount() public method

public BackupPagecount ( IDbBackupHandle handle ) : int
handle IDbBackupHandle
return int

BackupRemaining() public method

public BackupRemaining ( IDbBackupHandle handle ) : int
handle IDbBackupHandle
return int

BackupStep() public method

public BackupStep ( IDbBackupHandle handle, int pageCount ) : System.Result
handle IDbBackupHandle
pageCount int
return System.Result

BindBlob() public method

public BindBlob ( IDbStatement stmt, int index, byte val, int n, IntPtr free ) : int
stmt IDbStatement
index int
val byte
n int
free System.IntPtr
return int

BindDouble() public method

public BindDouble ( IDbStatement stmt, int index, double val ) : int
stmt IDbStatement
index int
val double
return int

BindInt() public method

public BindInt ( IDbStatement stmt, int index, int val ) : int
stmt IDbStatement
index int
val int
return int

BindInt64() public method

public BindInt64 ( IDbStatement stmt, int index, long val ) : int
stmt IDbStatement
index int
val long
return int

BindNull() public method

public BindNull ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
return int

BindParameterIndex() public method

public BindParameterIndex ( IDbStatement stmt, string name ) : int
stmt IDbStatement
name string
return int

BindText16() public method

public BindText16 ( IDbStatement stmt, int index, string val, int n, IntPtr free ) : int
stmt IDbStatement
index int
val string
n int
free System.IntPtr
return int

BusyTimeout() public method

public BusyTimeout ( IDbHandle db, int milliseconds ) : System.Result
db IDbHandle
milliseconds int
return System.Result

Changes() public method

public Changes ( IDbHandle db ) : int
db IDbHandle
return int

Close() public method

public Close ( IDbHandle db ) : System.Result
db IDbHandle
return System.Result

ColumnBlob() public method

public ColumnBlob ( IDbStatement stmt, int index ) : byte[]
stmt IDbStatement
index int
return byte[]

ColumnByteArray() public method

public ColumnByteArray ( IDbStatement stmt, int index ) : byte[]
stmt IDbStatement
index int
return byte[]

ColumnBytes() public method

public ColumnBytes ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
return int

ColumnCount() public method

public ColumnCount ( IDbStatement stmt ) : int
stmt IDbStatement
return int

ColumnDouble() public method

public ColumnDouble ( IDbStatement stmt, int index ) : double
stmt IDbStatement
index int
return double

ColumnInt() public method

public ColumnInt ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
return int

ColumnInt64() public method

public ColumnInt64 ( IDbStatement stmt, int index ) : long
stmt IDbStatement
index int
return long

ColumnName16() public method

public ColumnName16 ( IDbStatement stmt, int index ) : string
stmt IDbStatement
index int
return string

ColumnText16() public method

public ColumnText16 ( IDbStatement stmt, int index ) : string
stmt IDbStatement
index int
return string

ColumnType() public method

public ColumnType ( IDbStatement stmt, int index ) : ColType
stmt IDbStatement
index int
return ColType

Config() public method

public Config ( ConfigOption option ) : System.Result
option ConfigOption
return System.Result

EnableLoadExtension() public method

public EnableLoadExtension ( IDbHandle db, int onoff ) : System.Result
db IDbHandle
onoff int
return System.Result

Errmsg16() public method

public Errmsg16 ( IDbHandle db ) : string
db IDbHandle
return string

ExtendedErrCode() public method

public ExtendedErrCode ( IDbHandle db ) : ExtendedResult
db IDbHandle
return ExtendedResult

Finalize() public method

public Finalize ( IDbStatement stmt ) : System.Result
stmt IDbStatement
return System.Result

Initialize() public method

public Initialize ( ) : System.Result
return System.Result

LastInsertRowid() public method

public LastInsertRowid ( IDbHandle db ) : long
db IDbHandle
return long

LibVersionNumber() public method

public LibVersionNumber ( ) : int
return int

Open() public method

public Open ( byte filename, IDbHandle &db, int flags, IntPtr zvfs ) : System.Result
filename byte
db IDbHandle
flags int
zvfs System.IntPtr
return System.Result

Prepare2() public method

public Prepare2 ( IDbHandle db, string query ) : IDbStatement
db IDbHandle
query string
return IDbStatement

Reset() public method

public Reset ( IDbStatement stmt ) : System.Result
stmt IDbStatement
return System.Result

SQLiteApiWinRT() public method

public SQLiteApiWinRT ( string tempFolderPath = null ) : System
tempFolderPath string
return System

Shutdown() public method

public Shutdown ( ) : System.Result
return System.Result

Sleep() public method

public Sleep ( int millis ) : int
millis int
return int

SourceID() public method

public SourceID ( ) : string
return string

Step() public method

public Step ( IDbStatement stmt ) : System.Result
stmt IDbStatement
return System.Result