示例#1
0
        IntPtr Prepare()
        {
            var stmt = SQLite3.Prepare2(this._conn.Handle, this.CommandText);

            this.BindAll(stmt);
            return(stmt);
        }
示例#2
0
        protected virtual IntPtr Prepare()
        {
            var stmt = SQLite3.Prepare2(this.Connection.Handle, this.CommandText);

            return(stmt);
        }