C# Class SQLitePlugin, unity-sqlite3

Inheritance: MonoBehaviour
ファイルを表示 Open project: appbankgames/unity-sqlite3

Public Methods

Method Description
CloseDB ( ) : void
ExecuteQuery ( string queryString ) : int
ExecuteRowQuery ( string queryString, string &outputValues ) : bool
Init ( ) : void
OpenDB ( string dbFilename ) : bool
Start ( ) : void

Private Methods

Method Description
OnDestroy ( ) : void
_SQLitePlugin_CloseDB ( IntPtr instance ) : void
_SQLitePlugin_Destroy ( IntPtr instance ) : IntPtr
_SQLitePlugin_ExecuteQuery ( IntPtr instance, string queryString ) : int
_SQLitePlugin_ExecuteRowQuery ( IntPtr instance, string queryString, IntPtr &outRows, int &outNumValues ) : bool
_SQLitePlugin_Init ( string gameObject ) : IntPtr
_SQLitePlugin_OpenDB ( IntPtr instance, string dbFilename ) : bool

Method Details

CloseDB() public method

public CloseDB ( ) : void
return void

ExecuteQuery() public method

public ExecuteQuery ( string queryString ) : int
queryString string
return int

ExecuteRowQuery() public method

public ExecuteRowQuery ( string queryString, string &outputValues ) : bool
queryString string
outputValues string
return bool

Init() public method

public Init ( ) : void
return void

OpenDB() public method

public OpenDB ( string dbFilename ) : bool
dbFilename string
return bool

Start() public method

public Start ( ) : void
return void