First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this script testing the callback-free C/C++ API.
14 # $Id: capi3.test,v 1.67 2008/07/12 15:55:55 danielk1977 Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Return the UTF-16 representation of the supplied UTF-8 string $str.
21 # If $nt is true, append two 0x00 bytes as a nul terminator.
22 proc utf16 {str {nt 1}} {
23 set r [encoding convertto unicode $str]
30 # Return the UTF-8 representation of the supplied UTF-16 string $str.
32 # If $str ends in two 0x00 0x00 bytes, knock these off before
33 # converting to UTF-8 using TCL.
34 binary scan $str \c* vals
35 if {[lindex $vals end]==0 && [lindex $vals end-1]==0} {
36 set str [binary format \c* [lrange $vals 0 end-2]]
39 set r [encoding convertfrom unicode $str]
43 # These tests complement those in capi2.test. They are organized
46 # capi3-1.*: Test sqlite3_prepare
47 # capi3-2.*: Test sqlite3_prepare16
48 # capi3-3.*: Test sqlite3_open
49 # capi3-4.*: Test sqlite3_open16
50 # capi3-5.*: Test the various sqlite3_result_* APIs
51 # capi3-6.*: Test that sqlite3_close fails if there are outstanding VMs.
54 set DB [sqlite3_connection_pointer db]
57 sqlite3_get_autocommit $DB
60 set STMT [sqlite3_prepare $DB {SELECT name FROM sqlite_master} -1 TAIL]
61 sqlite3_finalize $STMT
71 set sql {SELECT name FROM sqlite_master;SELECT 10}
72 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
73 sqlite3_finalize $STMT
77 set sql {SELECT name FROM sqlite_master;SELECT 10}
78 set STMT [sqlite3_prepare $DB $sql [string length $sql] TAIL]
79 sqlite3_finalize $STMT
83 set sql {SELECT name FROM sqlite_master;SELECT 10}
84 set STMT [sqlite3_prepare $DB $sql [expr [string length $sql]+1] TAIL]
85 sqlite3_finalize $STMT
90 set sql {SELECT namex FROM sqlite_master}
92 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
100 } {no such column: namex}
104 set sql16 [utf16 {SELECT name FROM sqlite_master}]
105 set STMT [sqlite3_prepare16 $DB $sql16 -1 ::TAIL]
106 sqlite3_finalize $STMT
110 set sql [utf16 {SELECT name FROM sqlite_master;SELECT 10}]
111 set STMT [sqlite3_prepare16 $DB $sql -1 TAIL]
112 sqlite3_finalize $STMT
116 set sql [utf16 {SELECT namex FROM sqlite_master}]
118 set STMT [sqlite3_prepare16 $DB $sql -1 TAIL]
126 } {no such column: namex}
128 ifcapable schema_pragmas {
130 execsql {CREATE TABLE tablename(x)}
131 set sql16 [utf16 {PRAGMA table_info("TableName")}]
132 set STMT [sqlite3_prepare16 $DB $sql16 -1 TAIL]
139 sqlite3_finalize $STMT
145 # rename sqlite3_open sqlite3_open_old
146 # proc sqlite3_open {fname options} {sqlite3_open_new $fname $options}
149 set db2 [sqlite3_open test.db {}]
152 # FIX ME: Should test the db handle works.
156 # Symbian OS: '/' in the file name replaced with '\\'
159 set db2 [sqlite3_open \\bogus\\path\\test.db {}]
165 } {unable to open database file}
169 do_test capi3-3.6.1-misuse {
172 do_test capi3-3.6.2-misuse {
174 } {library routine called out of sequence}
176 do_test capi3-3.6.3-misuse {
177 utf8 [sqlite3_errmsg16 $db2]
178 } {library routine called out of sequence}
182 set db2 [sqlite3_open]
189 # rename sqlite3_open ""
190 # rename sqlite3_open_old sqlite3_open
194 set db2 [sqlite3_open16 [utf16 test.db] {}]
197 # FIX ME: Should test the db handle works.
201 # Symbian OS: '/' in the file name replaced with '\\'
204 set db2 [sqlite3_open16 [utf16 \\bogus\\path\\test.db] {}]
209 utf8 [sqlite3_errmsg16 $db2]
210 } {unable to open database file}
216 # This proc is used to test the following API calls:
218 # sqlite3_column_count
219 # sqlite3_column_name
220 # sqlite3_column_name16
221 # sqlite3_column_decltype
222 # sqlite3_column_decltype16
224 # $STMT is a compiled SQL statement. $test is a prefix
225 # to use for test names within this proc. $names is a list
226 # of the column names that should be returned by $STMT.
227 # $decltypes is a list of column declaration types for $STMT.
231 # set STMT [sqlite3_prepare "SELECT 1, 2, 2;" -1 DUMMY]
232 # check_header test1.1 {1 2 3} {"" "" ""}
234 proc check_header {STMT test names decltypes} {
236 # Use the return value of sqlite3_column_count() to build
237 # a list of column indexes. i.e. If sqlite3_column_count
238 # is 3, build the list {0 1 2}.
240 set ::numcols [sqlite3_column_count $STMT]
241 for {set i 0} {$i < $::numcols} {incr i} {lappend ::idxlist $i}
243 # Column names in UTF-8
246 foreach i $idxlist {lappend cnamelist [sqlite3_column_name $STMT $i]}
250 # Column names in UTF-16
255 lappend cnamelist [utf8 [sqlite3_column_name16 $STMT $i]]
261 # Column names in UTF-8
264 foreach i $idxlist {lappend cnamelist [sqlite3_column_name $STMT $i]}
268 # Column names in UTF-16
273 lappend cnamelist [utf8 [sqlite3_column_name16 $STMT $i]]
279 # Column names in UTF-8
282 foreach i $idxlist {lappend cnamelist [sqlite3_column_decltype $STMT $i]}
286 # Column declaration types in UTF-16
291 lappend cnamelist [utf8 [sqlite3_column_decltype16 $STMT $i]]
298 # Test some out of range conditions:
302 [sqlite3_column_name $STMT -1] \
303 [sqlite3_column_name16 $STMT -1] \
304 [sqlite3_column_decltype $STMT -1] \
305 [sqlite3_column_decltype16 $STMT -1] \
306 [sqlite3_column_name $STMT $numcols] \
307 [sqlite3_column_name16 $STMT $numcols] \
308 [sqlite3_column_decltype $STMT $numcols] \
309 [sqlite3_column_decltype16 $STMT $numcols]
310 } {{} {} {} {} {} {} {} {}}
314 # This proc is used to test the following API calls:
316 # sqlite3_column_origin_name
317 # sqlite3_column_origin_name16
318 # sqlite3_column_table_name
319 # sqlite3_column_table_name16
320 # sqlite3_column_database_name
321 # sqlite3_column_database_name16
323 # $STMT is a compiled SQL statement. $test is a prefix
324 # to use for test names within this proc. $names is a list
325 # of the column names that should be returned by $STMT.
326 # $decltypes is a list of column declaration types for $STMT.
330 # set STMT [sqlite3_prepare "SELECT 1, 2, 2;" -1 DUMMY]
331 # check_header test1.1 {1 2 3} {"" "" ""}
333 proc check_origin_header {STMT test dbs tables cols} {
334 # If sqlite3_column_origin_name() and friends are not compiled into
335 # this build, this proc is a no-op.
336 ifcapable columnmetadata {
337 # Use the return value of sqlite3_column_count() to build
338 # a list of column indexes. i.e. If sqlite3_column_count
339 # is 3, build the list {0 1 2}.
341 set ::numcols [sqlite3_column_count $STMT]
342 for {set i 0} {$i < $::numcols} {incr i} {lappend ::idxlist $i}
344 # Database names in UTF-8
348 lappend cnamelist [sqlite3_column_database_name $STMT $i]
353 # Database names in UTF-16
358 lappend cnamelist [utf8 [sqlite3_column_database_name16 $STMT $i]]
364 # Table names in UTF-8
368 lappend cnamelist [sqlite3_column_table_name $STMT $i]
373 # Table names in UTF-16
378 lappend cnamelist [utf8 [sqlite3_column_table_name16 $STMT $i]]
384 # Origin names in UTF-8
388 lappend cnamelist [sqlite3_column_origin_name $STMT $i]
393 # Origin declaration types in UTF-16
398 lappend cnamelist [utf8 [sqlite3_column_origin_name16 $STMT $i]]
406 # This proc is used to test the following APIs:
409 # sqlite3_column_type
411 # sqlite3_column_text
412 # sqlite3_column_text16
413 # sqlite3_column_double
415 # $STMT is a compiled SQL statement for which the previous call
416 # to sqlite3_step returned SQLITE_ROW. $test is a prefix to use
417 # for test names within this proc. $types is a list of the
418 # manifest types for the current row. $ints, $doubles and $strings
419 # are lists of the integer, real and string representations of
420 # the values in the current row.
424 # set STMT [sqlite3_prepare "SELECT 'hello', 1.1, NULL" -1 DUMMY]
426 # check_data test1.2 {TEXT REAL NULL} {0 1 0} {0 1.1 0} {hello 1.1 {}}
428 proc check_data {STMT test types ints doubles strings} {
430 # Use the return value of sqlite3_column_count() to build
431 # a list of column indexes. i.e. If sqlite3_column_count
432 # is 3, build the list {0 1 2}.
434 set numcols [sqlite3_data_count $STMT]
435 for {set i 0} {$i < $numcols} {incr i} {lappend ::idxlist $i}
440 foreach i $idxlist {lappend types [sqlite3_column_type $STMT $i]}
447 foreach i $idxlist {lappend ints [sqlite3_column_int64 $STMT $i]}
453 foreach i $::idxlist {
454 lappend lens [string length [lindex $strings $i]]
460 lappend bytes [sqlite3_column_bytes $STMT $i]
468 foreach i $::idxlist {
469 lappend lens [expr 2 * [string length [lindex $strings $i]]]
475 lappend bytes [sqlite3_column_bytes16 $STMT $i]
484 foreach i $idxlist {lappend utf8 [sqlite3_column_blob $STMT $i]}
491 foreach i $idxlist {lappend utf8 [sqlite3_column_text $STMT $i]}
498 foreach i $idxlist {lappend utf8 [sqlite3_column_double $STMT $i]}
506 foreach i $idxlist {lappend utf8 [utf8 [sqlite3_column_text16 $STMT $i]]}
514 foreach i $idxlist {lappend ints [sqlite3_column_int $STMT $i]}
521 foreach i $idxlist {lappend utf8 [sqlite3_column_double $STMT $i]}
528 foreach i $idxlist {lappend utf8 [sqlite3_column_text $STMT $i]}
535 foreach i $idxlist {lappend types [sqlite3_column_type $STMT $i]}
539 # Test that an out of range request returns the equivalent of NULL
541 sqlite3_column_int $STMT -1
544 sqlite3_column_text $STMT -1
549 ifcapable !floatingpoint {
556 CREATE TABLE t1(a VARINT, b BLOB, c VARCHAR(16));
557 INSERT INTO t1 VALUES(1, 2, 3);
558 INSERT INTO t1 VALUES('one', 'two', NULL);
559 INSERT INTO t1 VALUES(1.2, 1.3, 1.4);
561 set sql "SELECT * FROM t1"
562 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
563 sqlite3_column_count $STMT
566 check_header $STMT capi3-5.1 {a b c} {VARINT BLOB VARCHAR(16)}
567 check_origin_header $STMT capi3-5.1 {main main main} {t1 t1 t1} {a b c}
572 check_header $STMT capi3-5.3 {a b c} {VARINT BLOB VARCHAR(16)}
573 check_origin_header $STMT capi3-5.3 {main main main} {t1 t1 t1} {a b c}
574 check_data $STMT capi3-5.4 {INTEGER INTEGER TEXT} {1 2 3} {1.0 2.0 3.0} {1 2 3}
580 check_header $STMT capi3-5.6 {a b c} {VARINT BLOB VARCHAR(16)}
581 check_origin_header $STMT capi3-5.6 {main main main} {t1 t1 t1} {a b c}
582 check_data $STMT capi3-5.7 {TEXT TEXT NULL} {0 0 0} {0.0 0.0 0.0} {one two {}}
588 check_header $STMT capi3-5.9 {a b c} {VARINT BLOB VARCHAR(16)}
589 check_origin_header $STMT capi3-5.9 {main main main} {t1 t1 t1} {a b c}
590 check_data $STMT capi3-5.10 {FLOAT FLOAT TEXT} {1 1 1} {1.2 1.3 1.4} {1.2 1.3 1.4}
597 sqlite3_finalize $STMT
601 set sql "SELECT a, sum(b), max(c) FROM t1 GROUP BY a"
602 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
603 sqlite3_column_count $STMT
606 check_header $STMT capi3-5.21 {a sum(b) max(c)} {VARINT {} {}}
607 check_origin_header $STMT capi3-5.22 {main {} {}} {t1 {} {}} {a {} {}}
609 sqlite3_finalize $STMT
613 set sql "SELECT a AS x, sum(b) AS y, max(c) AS z FROM t1 AS m GROUP BY x"
614 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
615 sqlite3_column_count $STMT
618 check_header $STMT capi3-5.31 {x y z} {VARINT {} {}}
619 check_origin_header $STMT capi3-5.32 {main {} {}} {t1 {} {}} {a {} {}}
621 sqlite3_finalize $STMT
625 set ::ENC [execsql {pragma encoding}]
630 set DB [sqlite3_connection_pointer db]
631 sqlite3_key $DB xyzzy
632 set sql {SELECT a FROM t1 order by rowid}
633 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
643 check_data $STMT capi3-6.3 {INTEGER} {1} {1.0} {1}
645 sqlite3_finalize $STMT
647 do_test capi3-6.4-misuse {
653 # This procedure sets the value of the file-format in file 'test.db'
654 # to $newval. Also, the schema cookie is incremented.
656 proc set_file_format {newval} {
657 hexio_write test.db 44 [hexio_render_int32 $newval]
658 set schemacookie [hexio_get_int [hexio_read test.db 40 4]]
660 hexio_write test.db 40 [hexio_render_int32 $schemacookie]
664 # This procedure returns the value of the file-format in file 'test.db'.
666 proc get_file_format {{fname test.db}} {
667 return [hexio_get_int [hexio_read $fname 44 4]]
670 if {![sqlite3 -has-codec]} {
671 # Test what happens when the library encounters a newer file format.
678 SELECT * FROM sqlite_master;
680 } {1 {unsupported file format}}
684 if {![sqlite3 -has-codec]} {
685 # Now test that the library correctly handles bogus entries in the
686 # sqlite_master table (schema corruption).
688 file delete -force test.db test.db-journal
698 PRAGMA writable_schema=ON;
699 INSERT INTO sqlite_master VALUES(NULL,NULL,NULL,NULL,NULL);
706 SELECT * FROM sqlite_master;
708 } {1 {malformed database schema (?)}}
710 # Build a 5-field row record. The first field is a string 'table', and
711 # subsequent fields are all NULL.
713 file delete -force test.db test.db-journal
717 PRAGMA writable_schema=ON;
718 INSERT INTO sqlite_master VALUES('table',NULL,NULL,NULL,NULL);
725 SELECT * FROM sqlite_master;
727 } {1 {malformed database schema (?)}}
730 file delete -force test.db
731 file delete -force test.db-journal
734 # Test the english language string equivalents for sqlite error codes
735 set code2english [list \
736 SQLITE_OK {not an error} \
737 SQLITE_ERROR {SQL logic error or missing database} \
738 SQLITE_PERM {access permission denied} \
739 SQLITE_ABORT {callback requested query abort} \
740 SQLITE_BUSY {database is locked} \
741 SQLITE_LOCKED {database table is locked} \
742 SQLITE_NOMEM {out of memory} \
743 SQLITE_READONLY {attempt to write a readonly database} \
744 SQLITE_INTERRUPT {interrupted} \
745 SQLITE_IOERR {disk I/O error} \
746 SQLITE_CORRUPT {database disk image is malformed} \
747 SQLITE_FULL {database or disk is full} \
748 SQLITE_CANTOPEN {unable to open database file} \
749 SQLITE_EMPTY {table contains no data} \
750 SQLITE_SCHEMA {database schema has changed} \
751 SQLITE_CONSTRAINT {constraint failed} \
752 SQLITE_MISMATCH {datatype mismatch} \
753 SQLITE_MISUSE {library routine called out of sequence} \
754 SQLITE_NOLFS {large file support is disabled} \
755 SQLITE_AUTH {authorization denied} \
756 SQLITE_FORMAT {auxiliary database format error} \
757 SQLITE_RANGE {bind or column index out of range} \
758 SQLITE_NOTADB {file is encrypted or is not a database} \
759 unknownerror {unknown error} \
763 foreach {code english} $code2english {
764 do_test capi3-9.$test_number "sqlite3_test_errstr $code" $english
768 # Test the error message when a "real" out of memory occurs.
772 set DB [sqlite3_connection_pointer db]
773 sqlite3_memdebug_fail 1
775 select * from sqlite_master;
777 } {1 {out of memory}}
783 utf8 [sqlite3_errmsg16 $::DB]
787 sqlite3_memdebug_fail -1
790 set DB [sqlite3_connection_pointer db]
791 sqlite3_memdebug_fail 1
793 select * from sqlite_master where rowid>5;
795 } {1 {out of memory}}
801 utf8 [sqlite3_errmsg16 $::DB]
805 sqlite3_memdebug_fail -1
808 # The following tests - capi3-11.* - test that a COMMIT or ROLLBACK
809 # statement issued while there are still outstanding VMs that are part of
810 # the transaction fails.
812 set DB [sqlite3_connection_pointer db]
813 sqlite_register_test_function $DB func
817 CREATE TABLE t1(a, b);
818 INSERT INTO t1 VALUES(1, 'int');
819 INSERT INTO t1 VALUES(2, 'notatype');
822 do_test capi3-11.1.1 {
823 sqlite3_get_autocommit $DB
826 set STMT [sqlite3_prepare $DB "SELECT func(b, a) FROM t1" -1 TAIL]
833 } {1 {cannot commit transaction - SQL statements in progress}}
834 do_test capi3-11.3.1 {
835 sqlite3_get_autocommit $DB
841 sqlite3_finalize $STMT
847 } {0 {1 int 2 notatype}}
848 do_test capi3-11.6.1 {
849 sqlite3_get_autocommit $DB
856 do_test capi3-11.7.1 {
857 sqlite3_get_autocommit $DB
862 INSERT INTO t2 VALUES(1);
863 INSERT INTO t2 VALUES(2);
865 INSERT INTO t2 VALUES(3);
868 do_test capi3-11.8.1 {
869 sqlite3_get_autocommit $DB
872 set STMT [sqlite3_prepare $DB "SELECT a FROM t2" -1 TAIL]
875 do_test capi3-11.9.1 {
876 sqlite3_get_autocommit $DB
878 do_test capi3-11.9.2 {
882 } {1 {cannot rollback transaction - SQL statements in progress}}
883 do_test capi3-11.9.3 {
884 sqlite3_get_autocommit $DB
886 do_test capi3-11.10 {
889 do_test capi3-11.11 {
892 do_test capi3-11.12 {
895 do_test capi3-11.13 {
896 sqlite3_finalize $STMT
898 do_test capi3-11.14 {
903 do_test capi3-11.14.1 {
904 sqlite3_get_autocommit $DB
906 do_test capi3-11.15 {
911 do_test capi3-11.15.1 {
912 sqlite3_get_autocommit $DB
914 do_test capi3-11.16 {
920 # Sanity check on the definition of 'outstanding VM'. This means any VM
921 # that has had sqlite3_step() called more recently than sqlite3_finalize() or
922 # sqlite3_reset(). So a VM that has just been prepared or reset does not
923 # count as an active VM.
924 do_test capi3-11.17 {
929 do_test capi3-11.18 {
930 set STMT [sqlite3_prepare $DB "SELECT a FROM t1" -1 TAIL]
935 do_test capi3-11.19 {
938 do_test capi3-11.20 {
943 } {1 {cannot commit transaction - SQL statements in progress}}
944 do_test capi3-11.20 {
950 do_test capi3-11.21 {
951 sqlite3_finalize $STMT
954 # The following tests - capi3-12.* - check that its Ok to start a
955 # transaction while other VMs are active, and that its Ok to execute
956 # atomic updates in the same situation
959 set STMT [sqlite3_prepare $DB "SELECT a FROM t2" -1 TAIL]
964 INSERT INTO t1 VALUES(3, NULL);
969 INSERT INTO t2 VALUES(4);
975 INSERT INTO t1 VALUES(4, NULL);
981 do_test capi3-12.5.1 {
988 sqlite3_finalize $STMT
997 # Test cases capi3-13.* test the sqlite3_clear_bindings() and
998 # sqlite3_sleep APIs.
1000 if {[llength [info commands sqlite3_clear_bindings]]>0} {
1001 do_test capi3-13.1 {
1005 set STMT [sqlite3_prepare $DB "INSERT INTO t1 VALUES(?, ?)" -1 TAIL]
1008 do_test capi3-13.2 {
1010 sqlite3_bind_text $STMT 1 hello 5
1011 sqlite3_bind_text $STMT 2 world 5
1014 do_test capi3-13.3 {
1016 sqlite3_clear_bindings $STMT
1019 do_test capi3-13-4 {
1020 sqlite3_finalize $STMT
1024 } {{} {} hello world {} {}}
1026 if {[llength [info commands sqlite3_sleep]]>0} {
1027 do_test capi3-13-5 {
1028 set ms [sqlite3_sleep 80]
1029 expr {$ms==80 || $ms==1000}
1033 # Ticket #1219: Make sure binding APIs can handle a NULL pointer.
1035 do_test capi3-14.1-misuse {
1036 set rc [catch {sqlite3_bind_text 0 1 hello 5} msg]
1040 # Ticket #1650: Honor the nBytes parameter to sqlite3_prepare.
1042 do_test capi3-15.1 {
1043 set sql {SELECT * FROM t2}
1044 set nbytes [string length $sql]
1045 append sql { WHERE a==1}
1046 set STMT [sqlite3_prepare $DB $sql $nbytes TAIL]
1048 sqlite3_column_int $STMT 0
1050 do_test capi3-15.2 {
1052 sqlite3_column_int $STMT 0
1054 do_test capi3-15.3 {
1055 sqlite3_finalize $STMT
1057 do_test capi3-15.4 {
1059 set sql {SELECT 1234567890}
1060 set STMT [sqlite3_prepare $DB $sql 8 TAIL]
1062 set v1 [sqlite3_column_int $STMT 0]
1063 sqlite3_finalize $STMT
1066 do_test capi3-15.5 {
1068 set sql {SELECT 1234567890}
1069 set STMT [sqlite3_prepare $DB $sql 9 TAIL]
1071 set v1 [sqlite3_column_int $STMT 0]
1072 sqlite3_finalize $STMT
1075 do_test capi3-15.6 {
1077 set sql {SELECT 1234567890}
1078 set STMT [sqlite3_prepare $DB $sql 12 TAIL]
1080 set v1 [sqlite3_column_int $STMT 0]
1081 sqlite3_finalize $STMT
1084 do_test capi3-15.7 {
1086 set sql {SELECT 12.34567890}
1087 set STMT [sqlite3_prepare $DB $sql 12 TAIL]
1089 set v1 [sqlite3_column_double $STMT 0]
1090 sqlite3_finalize $STMT
1093 do_test capi3-15.8 {
1095 set sql {SELECT 12.34567890}
1096 set STMT [sqlite3_prepare $DB $sql 14 TAIL]
1098 set v1 [sqlite3_column_double $STMT 0]
1099 sqlite3_finalize $STMT
1103 # Make sure code is always generated even if an IF EXISTS or
1104 # IF NOT EXISTS clause is present that the table does not or
1105 # does exists. That way we will always have a prepared statement
1106 # to expire when the schema changes.
1108 do_test capi3-16.1 {
1109 set sql {DROP TABLE IF EXISTS t3}
1110 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
1111 sqlite3_finalize $STMT
1114 do_test capi3-16.2 {
1115 set sql {CREATE TABLE IF NOT EXISTS t1(x,y)}
1116 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
1117 sqlite3_finalize $STMT
1121 # But still we do not generate code if there is no SQL
1123 do_test capi3-16.3 {
1124 set STMT [sqlite3_prepare $DB {} -1 TAIL]
1125 sqlite3_finalize $STMT
1128 do_test capi3-16.4 {
1129 set STMT [sqlite3_prepare $DB {;} -1 TAIL]
1130 sqlite3_finalize $STMT
1134 # Ticket #2426: Misuse of sqlite3_column_* by calling it after
1135 # a sqlite3_reset should be harmless.
1137 do_test capi3-17.1 {
1138 set STMT [sqlite3_prepare $DB {SELECT * FROM t2} -1 TAIL]
1140 sqlite3_column_int $STMT 0
1142 do_test capi3-17.2 {
1144 sqlite3_column_int $STMT 0
1146 do_test capi3-17.3 {
1147 sqlite3_finalize $STMT
1150 # Verify that sqlite3_step() fails with an SQLITE_SCHEMA error
1151 # when the statement is prepared with sqlite3_prepare() (not
1152 # sqlite3_prepare_v2()) and the schema has changed.
1154 do_test capi3-18.1 {
1155 set STMT [sqlite3_prepare db {SELECT * FROM t2} -1 TAIL]
1157 db2 eval {CREATE TABLE t3(x)}
1161 do_test capi3-18.2 {
1165 do_test capi3-18.3 {
1167 } {database schema has changed}
1168 # The error persist on retry when sqlite3_prepare() has been used.
1169 do_test capi3-18.4 {
1172 do_test capi3-18.5 {
1176 do_test capi3-18.6 {
1178 } {database schema has changed}
1179 sqlite3_finalize $STMT
1181 # Ticket #3134. Prepare a statement with an nBytes parameter of 0.
1182 # Make sure this works correctly and does not reference memory out of
1185 do_test capi3-19.1 {
1186 sqlite3_prepare_tkt3134 db
1189 # Tests of the interface when no VFS is registered.
1191 if {![info exists tester_do_binarylog]} {
1194 do_test capi3-20.1 {