C# 클래스 SQLite.Net.Platform.WinRT.SQLiteApiWinRT

상속: ISQLiteApiExt
파일 보기 프로젝트 열기: Rhapsody/SQLite.Net-PCL 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

BackupFinish() 공개 메소드

public BackupFinish ( IDbBackupHandle handle ) : System.Result
handle IDbBackupHandle
리턴 System.Result

BackupInit() 공개 메소드

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

BackupPagecount() 공개 메소드

public BackupPagecount ( IDbBackupHandle handle ) : int
handle IDbBackupHandle
리턴 int

BackupRemaining() 공개 메소드

public BackupRemaining ( IDbBackupHandle handle ) : int
handle IDbBackupHandle
리턴 int

BackupStep() 공개 메소드

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

BindBlob() 공개 메소드

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

BindDouble() 공개 메소드

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

BindInt() 공개 메소드

public BindInt ( IDbStatement stmt, int index, int val ) : int
stmt IDbStatement
index int
val int
리턴 int

BindInt64() 공개 메소드

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

BindNull() 공개 메소드

public BindNull ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
리턴 int

BindParameterIndex() 공개 메소드

public BindParameterIndex ( IDbStatement stmt, string name ) : int
stmt IDbStatement
name string
리턴 int

BindText16() 공개 메소드

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

BusyTimeout() 공개 메소드

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

Changes() 공개 메소드

public Changes ( IDbHandle db ) : int
db IDbHandle
리턴 int

Close() 공개 메소드

public Close ( IDbHandle db ) : System.Result
db IDbHandle
리턴 System.Result

ColumnBlob() 공개 메소드

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

ColumnByteArray() 공개 메소드

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

ColumnBytes() 공개 메소드

public ColumnBytes ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
리턴 int

ColumnCount() 공개 메소드

public ColumnCount ( IDbStatement stmt ) : int
stmt IDbStatement
리턴 int

ColumnDouble() 공개 메소드

public ColumnDouble ( IDbStatement stmt, int index ) : double
stmt IDbStatement
index int
리턴 double

ColumnInt() 공개 메소드

public ColumnInt ( IDbStatement stmt, int index ) : int
stmt IDbStatement
index int
리턴 int

ColumnInt64() 공개 메소드

public ColumnInt64 ( IDbStatement stmt, int index ) : long
stmt IDbStatement
index int
리턴 long

ColumnName16() 공개 메소드

public ColumnName16 ( IDbStatement stmt, int index ) : string
stmt IDbStatement
index int
리턴 string

ColumnText16() 공개 메소드

public ColumnText16 ( IDbStatement stmt, int index ) : string
stmt IDbStatement
index int
리턴 string

ColumnType() 공개 메소드

public ColumnType ( IDbStatement stmt, int index ) : ColType
stmt IDbStatement
index int
리턴 ColType

Config() 공개 메소드

public Config ( ConfigOption option ) : System.Result
option ConfigOption
리턴 System.Result

EnableLoadExtension() 공개 메소드

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

Errmsg16() 공개 메소드

public Errmsg16 ( IDbHandle db ) : string
db IDbHandle
리턴 string

ExtendedErrCode() 공개 메소드

public ExtendedErrCode ( IDbHandle db ) : ExtendedResult
db IDbHandle
리턴 ExtendedResult

Finalize() 공개 메소드

public Finalize ( IDbStatement stmt ) : System.Result
stmt IDbStatement
리턴 System.Result

Initialize() 공개 메소드

public Initialize ( ) : System.Result
리턴 System.Result

LastInsertRowid() 공개 메소드

public LastInsertRowid ( IDbHandle db ) : long
db IDbHandle
리턴 long

LibVersionNumber() 공개 메소드

public LibVersionNumber ( ) : int
리턴 int

Open() 공개 메소드

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

Prepare2() 공개 메소드

public Prepare2 ( IDbHandle db, string query ) : IDbStatement
db IDbHandle
query string
리턴 IDbStatement

Reset() 공개 메소드

public Reset ( IDbStatement stmt ) : System.Result
stmt IDbStatement
리턴 System.Result

SQLiteApiWinRT() 공개 메소드

public SQLiteApiWinRT ( string tempFolderPath = null ) : System
tempFolderPath string
리턴 System

Shutdown() 공개 메소드

public Shutdown ( ) : System.Result
리턴 System.Result

Sleep() 공개 메소드

public Sleep ( int millis ) : int
millis int
리턴 int

SourceID() 공개 메소드

public SourceID ( ) : string
리턴 string

Step() 공개 메소드

public Step ( IDbStatement stmt ) : System.Result
stmt IDbStatement
리턴 System.Result