BindParameterIndex() private method

private BindParameterIndex ( IntPtr stmt, [ name ) : int
stmt IntPtr
name [
return int
コード例 #1
0
        public int BindParameterIndex(IDbStatement stmt, string name)
        {
            var dbStatement = (DbStatement)stmt;


            if (_useWinSqlite)
            {
                return(WinSQLite3.BindParameterIndex(dbStatement.InternalStmt, name));
            }
            else
            {
                return(SQLite3.BindParameterIndex(dbStatement.InternalStmt, name));
            }
        }
コード例 #2
0
        public int BindParameterIndex(IDbStatement stmt, string name)
        {
            var dbStatement = (DbStatement)stmt;

            return(SQLite3.BindParameterIndex(dbStatement.InternalStmt, name));
        }