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

📄 safety.test

📁 sqlite-3.4.1,嵌入式数据库.是一个功能强大的开源数据库,给学习和研发以及小型公司的发展带来了全所未有的好处.
💻 TEST
字号:
# 2005 January 11## 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 the sqlite3SafetyOn and sqlite3SafetyOff# functions.  Those routines are not strictly necessary - they are# designed to detect misuse of the library.## $Id: safety.test,v 1.2 2006/01/03 00:33:50 drh Exp $set testdir [file dirname $argv0]source $testdir/tester.tcldo_test safety-1.1 {  set DB [sqlite3_connection_pointer db]  db eval {CREATE TABLE t1(a)}  sqlite_set_magic $DB SQLITE_MAGIC_BUSY  catchsql {    SELECT name FROM sqlite_master;  }} {1 {library routine called out of sequence}}do_test safety-1.2 {  sqlite_set_magic $DB SQLITE_MAGIC_OPEN  catchsql {    SELECT name FROM sqlite_master  }} {0 t1}do_test safety-2.1 {  proc safety_on {} "sqlite_set_magic $DB SQLITE_MAGIC_BUSY"  db function safety_on safety_on  catchsql {    SELECT safety_on(), name FROM sqlite_master  }} {1 {library routine called out of sequence}}do_test safety-2.2 {  catchsql {    SELECT 'hello'  }} {1 {library routine called out of sequence}}do_test safety-2.3 {  sqlite3_close $DB} {SQLITE_MISUSE}do_test safety-2.4 {  sqlite_set_magic $DB SQLITE_MAGIC_OPEN  execsql {    SELECT name FROM sqlite_master  }} {t1}do_test safety-3.1 {  set rc [catch {    db eval {SELECT name FROM sqlite_master} {      sqlite_set_magic $DB SQLITE_MAGIC_BUSY    }  } msg]  lappend rc $msg} {1 {library routine called out of sequence}}sqlite_set_magic $DB SQLITE_MAGIC_OPENfinish_test

⌨️ 快捷键说明

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