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

📄 vtab8.test

📁 sqlite-3.4.1,嵌入式数据库.是一个功能强大的开源数据库,给学习和研发以及小型公司的发展带来了全所未有的好处.
💻 TEST
字号:
# 2006 August 29## 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 inserting into virtual tables from a SELECT# statement.## $Id: vtab8.test,v 1.2 2007/03/02 08:12:23 danielk1977 Exp $set testdir [file dirname $argv0]source $testdir/tester.tclifcapable !vtab {  finish_test  return}register_echo_module [sqlite3_connection_pointer db]# See ticket #2244#do_test vtab1.2244-1 {  execsql {    CREATE TABLE t2244(a, b);    CREATE VIRTUAL TABLE t2244e USING echo(t2244);    INSERT INTO t2244 VALUES('AA', 'BB');    INSERT INTO t2244 VALUES('CC', 'DD');    SELECT rowid, * FROM t2244e;  }} {1 AA BB 2 CC DD}do_test vtab1.2244-2 {  execsql {    SELECT * FROM t2244e WHERE rowid = 10;  }} {}do_test vtab1.2244-3 {  execsql {    UPDATE t2244e SET a = 'hello world' WHERE 0;    SELECT rowid, * FROM t2244e;  }} {1 AA BB 2 CC DD}do_test vtab1-2250-2 {  execsql {    CREATE TABLE t2250(a, b);    INSERT INTO t2250 VALUES(10, 20);    CREATE VIRTUAL TABLE t2250e USING echo(t2250);    select max(rowid) from t2250;    select max(rowid) from t2250e;  }} {1 1}# See ticket #2260.#do_test vtab1.2260-1 {  execsql {    CREATE TABLE t2260a_real(a, b);    CREATE TABLE t2260b_real(a, b);    CREATE INDEX i2260 ON t2260a_real(a);    CREATE INDEX i2260x ON t2260b_real(a);    CREATE VIRTUAL TABLE t2260a USING echo(t2260a_real);    CREATE VIRTUAL TABLE t2260b USING echo(t2260b_real);    SELECT * FROM t2260a, t2260b WHERE t2260a.a = t2260b.a AND t2260a.a > 101;  }} {}unset -nocomplain echo_module_begin_failfinish_test

⌨️ 快捷键说明

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