コード例 #1
0
        internal override void SetTimeout(int nTimeoutMS)
        {
            int n = UnsafeNativeMethods.sqlite3_busy_timeout_interop(_sql, nTimeoutMS);

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