sqlite3_bind_parameter_count() private method

private sqlite3_bind_parameter_count ( IntPtr stmt ) : int
stmt System.IntPtr
return int
コード例 #1
0
ファイル: SQLite3.cs プロジェクト: wuhuolong/MaxBooks
 internal override int Bind_ParamCount(SqliteStatement stmt)
 {
     return(UnsafeNativeMethods.sqlite3_bind_parameter_count(stmt._sqlite_stmt));
 }