BindDouble() private method

private BindDouble ( IntPtr stmt, int index, double val ) : int
stmt IntPtr
index int
val double
return int
コード例 #1
0
        public int BindDouble(IDbStatement stmt, int index, double val)
        {
            var dbStatement = (DbStatement)stmt;


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

            return(SQLite3.BindDouble(dbStatement.InternalStmt, index, val));
        }