⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 diskfull.test

📁 一个小型的嵌入式数据库
💻 TEST
字号:
# 2001 October 12## The author disclaims copyright to this source code.  In place of# a legal notice, here is a blessing:##    May you do good and not evil.#    May you find forgiveness for yourself and forgive others.#    May you share freely, never taking more than you give.##***********************************************************************# This file implements regression tests for SQLite library.  The# focus of this file is testing for correct handling of disk full# errors.# # $Id: diskfull.test,v 1.1 2004/10/01 14:38:03 drh Exp $set testdir [file dirname $argv0]source $testdir/tester.tcldo_test diskfull-1.1 {  execsql {    CREATE TABLE t1(x);    INSERT INTO t1 VALUES(randstr(1000,1000));    INSERT INTO t1 SELECT * FROM t1;  }} {}do_test diskfull-1.2 {  set sqlite_diskfull_pending 1  catchsql {    INSERT INTO t1 SELECT * FROM t1;  }} {1 {database is full}}do_test diskfull-1.3 {  set sqlite_diskfull_pending 1  catchsql {    DELETE FROM t1;  }} {1 {database is full}}finish_test

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -