Пример #1
0
        internal override void Bind_Text(SQLiteStatement stmt, int index, string value)
        {
            int n = UnsafeNativeMethods.sqlite3_bind_text16_interop(stmt._sqlite_stmt, index, value, value.Length * 2, -1);

            if (n > 0)
            {
                throw new SQLiteException(n, SQLiteLastError());
            }
        }