sqlite3_bind_parameter_count() 개인적인 메소드

private sqlite3_bind_parameter_count ( IntPtr stmt ) : int
stmt System.IntPtr
리턴 int
예제 #1
0
 internal override int Bind_ParamCount(SqliteStatement stmt)
 {
     return(UnsafeNativeMethods.sqlite3_bind_parameter_count(stmt._sqlite_stmt));
 }