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.
13 # This is a copy of the capi3.test file that has been adapted to
14 # test the new sqlite3_prepare_v2 interface.
16 # $Id: capi3c.test,v 1.19 2008/05/05 16:56:35 drh Exp $
19 set testdir [file dirname $argv0]
20 source $testdir/tester.tcl
22 # Return the UTF-16 representation of the supplied UTF-8 string $str.
23 # If $nt is true, append two 0x00 bytes as a nul terminator.
24 proc utf16 {str {nt 1}} {
25 set r [encoding convertto unicode $str]
32 # Return the UTF-8 representation of the supplied UTF-16 string $str.
34 # If $str ends in two 0x00 0x00 bytes, knock these off before
35 # converting to UTF-8 using TCL.
36 binary scan $str \c* vals
37 if {[lindex $vals end]==0 && [lindex $vals end-1]==0} {
38 set str [binary format \c* [lrange $vals 0 end-2]]
41 set r [encoding convertfrom unicode $str]
45 # These tests complement those in capi2.test. They are organized
48 # capi3c-1.*: Test sqlite3_prepare_v2
49 # capi3c-2.*: Test sqlite3_prepare16_v2
50 # capi3c-3.*: Test sqlite3_open
51 # capi3c-4.*: Test sqlite3_open16
52 # capi3c-5.*: Test the various sqlite3_result_* APIs
53 # capi3c-6.*: Test that sqlite3_close fails if there are outstanding VMs.
56 set DB [sqlite3_connection_pointer db]
59 sqlite3_get_autocommit $DB
62 set STMT [sqlite3_prepare_v2 $DB {SELECT name FROM sqlite_master} -1 TAIL]
63 sqlite3_finalize $STMT
73 set sql {SELECT name FROM sqlite_master;SELECT 10}
74 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
75 sqlite3_finalize $STMT
79 set sql {SELECT namex FROM sqlite_master}
81 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
89 } {no such column: namex}
94 set sql16 [utf16 {SELECT name FROM sqlite_master}]
95 set STMT [sqlite3_prepare16_v2 $DB $sql16 -1 ::TAIL]
96 sqlite3_finalize $STMT
100 set sql [utf16 {SELECT name FROM sqlite_master;SELECT 10}]
101 set STMT [sqlite3_prepare16_v2 $DB $sql -1 TAIL]
102 sqlite3_finalize $STMT
106 set sql [utf16 {SELECT namex FROM sqlite_master}]
108 set STMT [sqlite3_prepare16_v2 $DB $sql -1 TAIL]
116 } {no such column: namex}
118 ifcapable schema_pragmas {
120 execsql {CREATE TABLE tablename(x)}
121 set sql16 [utf16 {PRAGMA table_info("TableName")}]
122 set STMT [sqlite3_prepare16_v2 $DB $sql16 -1 TAIL]
129 sqlite3_finalize $STMT
135 # rename sqlite3_open sqlite3_open_old
136 # proc sqlite3_open {fname options} {sqlite3_open_new $fname $options}
139 set db2 [sqlite3_open test.db {}]
142 # FIX ME: Should test the db handle works.
146 # Symbian OS: '/' in the file name replaced with '\\'
149 set db2 [sqlite3_open \\bogus\\path\\test.db {}]
155 } {unable to open database file}
159 do_test capi3c-3.6.1-misuse {
162 do_test capi3c-3.6.2-misuse {
164 } {library routine called out of sequence}
166 do_test capi3c-3.6.3-misuse {
167 utf8 [sqlite3_errmsg16 $db2]
168 } {library routine called out of sequence}
171 # rename sqlite3_open ""
172 # rename sqlite3_open_old sqlite3_open
176 set db2 [sqlite3_open16 [utf16 test.db] {}]
179 # FIX ME: Should test the db handle works.
183 # Symbian OS: '/' in the file name replaced with '\\'
186 set db2 [sqlite3_open16 [utf16 \\bogus\\path\\test.db] {}]
191 utf8 [sqlite3_errmsg16 $db2]
192 } {unable to open database file}
198 # This proc is used to test the following API calls:
200 # sqlite3_column_count
201 # sqlite3_column_name
202 # sqlite3_column_name16
203 # sqlite3_column_decltype
204 # sqlite3_column_decltype16
206 # $STMT is a compiled SQL statement. $test is a prefix
207 # to use for test names within this proc. $names is a list
208 # of the column names that should be returned by $STMT.
209 # $decltypes is a list of column declaration types for $STMT.
213 # set STMT [sqlite3_prepare_v2 "SELECT 1, 2, 2;" -1 DUMMY]
214 # check_header test1.1 {1 2 3} {"" "" ""}
216 proc check_header {STMT test names decltypes} {
218 # Use the return value of sqlite3_column_count() to build
219 # a list of column indexes. i.e. If sqlite3_column_count
220 # is 3, build the list {0 1 2}.
222 set ::numcols [sqlite3_column_count $STMT]
223 for {set i 0} {$i < $::numcols} {incr i} {lappend ::idxlist $i}
225 # Column names in UTF-8
228 foreach i $idxlist {lappend cnamelist [sqlite3_column_name $STMT $i]}
232 # Column names in UTF-16
237 lappend cnamelist [utf8 [sqlite3_column_name16 $STMT $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_decltype $STMT $i]}
268 # Column declaration types in UTF-16
273 lappend cnamelist [utf8 [sqlite3_column_decltype16 $STMT $i]]
280 # Test some out of range conditions:
284 [sqlite3_column_name $STMT -1] \
285 [sqlite3_column_name16 $STMT -1] \
286 [sqlite3_column_decltype $STMT -1] \
287 [sqlite3_column_decltype16 $STMT -1] \
288 [sqlite3_column_name $STMT $numcols] \
289 [sqlite3_column_name16 $STMT $numcols] \
290 [sqlite3_column_decltype $STMT $numcols] \
291 [sqlite3_column_decltype16 $STMT $numcols]
292 } {{} {} {} {} {} {} {} {}}
296 # This proc is used to test the following API calls:
298 # sqlite3_column_origin_name
299 # sqlite3_column_origin_name16
300 # sqlite3_column_table_name
301 # sqlite3_column_table_name16
302 # sqlite3_column_database_name
303 # sqlite3_column_database_name16
305 # $STMT is a compiled SQL statement. $test is a prefix
306 # to use for test names within this proc. $names is a list
307 # of the column names that should be returned by $STMT.
308 # $decltypes is a list of column declaration types for $STMT.
312 # set STMT [sqlite3_prepare_v2 "SELECT 1, 2, 2;" -1 DUMMY]
313 # check_header test1.1 {1 2 3} {"" "" ""}
315 proc check_origin_header {STMT test dbs tables cols} {
316 # If sqlite3_column_origin_name() and friends are not compiled into
317 # this build, this proc is a no-op.
318 ifcapable columnmetadata {
320 # Use the return value of sqlite3_column_count() to build
321 # a list of column indexes. i.e. If sqlite3_column_count
322 # is 3, build the list {0 1 2}.
324 set ::numcols [sqlite3_column_count $STMT]
325 for {set i 0} {$i < $::numcols} {incr i} {lappend ::idxlist $i}
327 # Database names in UTF-8
331 lappend cnamelist [sqlite3_column_database_name $STMT $i]
336 # Database names in UTF-16
341 lappend cnamelist [utf8 [sqlite3_column_database_name16 $STMT $i]]
347 # Table names in UTF-8
351 lappend cnamelist [sqlite3_column_table_name $STMT $i]
356 # Table names in UTF-16
361 lappend cnamelist [utf8 [sqlite3_column_table_name16 $STMT $i]]
367 # Origin names in UTF-8
371 lappend cnamelist [sqlite3_column_origin_name $STMT $i]
376 # Origin declaration types in UTF-16
381 lappend cnamelist [utf8 [sqlite3_column_origin_name16 $STMT $i]]
389 # This proc is used to test the following APIs:
392 # sqlite3_column_type
394 # sqlite3_column_text
395 # sqlite3_column_text16
396 # sqlite3_column_double
398 # $STMT is a compiled SQL statement for which the previous call
399 # to sqlite3_step returned SQLITE_ROW. $test is a prefix to use
400 # for test names within this proc. $types is a list of the
401 # manifest types for the current row. $ints, $doubles and $strings
402 # are lists of the integer, real and string representations of
403 # the values in the current row.
407 # set STMT [sqlite3_prepare_v2 "SELECT 'hello', 1.1, NULL" -1 DUMMY]
409 # check_data test1.2 {TEXT REAL NULL} {0 1 0} {0 1.1 0} {hello 1.1 {}}
411 proc check_data {STMT test types ints doubles strings} {
413 # Use the return value of sqlite3_column_count() to build
414 # a list of column indexes. i.e. If sqlite3_column_count
415 # is 3, build the list {0 1 2}.
417 set numcols [sqlite3_data_count $STMT]
418 for {set i 0} {$i < $numcols} {incr i} {lappend ::idxlist $i}
423 foreach i $idxlist {lappend types [sqlite3_column_type $STMT $i]}
430 foreach i $idxlist {lappend ints [sqlite3_column_int64 $STMT $i]}
436 foreach i $::idxlist {
437 lappend lens [string length [lindex $strings $i]]
443 lappend bytes [sqlite3_column_bytes $STMT $i]
451 foreach i $::idxlist {
452 lappend lens [expr 2 * [string length [lindex $strings $i]]]
458 lappend bytes [sqlite3_column_bytes16 $STMT $i]
467 foreach i $idxlist {lappend utf8 [sqlite3_column_blob $STMT $i]}
474 foreach i $idxlist {lappend utf8 [sqlite3_column_text $STMT $i]}
481 foreach i $idxlist {lappend utf8 [sqlite3_column_double $STMT $i]}
489 foreach i $idxlist {lappend utf8 [utf8 [sqlite3_column_text16 $STMT $i]]}
497 foreach i $idxlist {lappend ints [sqlite3_column_int $STMT $i]}
504 foreach i $idxlist {lappend utf8 [sqlite3_column_double $STMT $i]}
511 foreach i $idxlist {lappend utf8 [sqlite3_column_text $STMT $i]}
518 foreach i $idxlist {lappend types [sqlite3_column_type $STMT $i]}
522 # Test that an out of range request returns the equivalent of NULL
524 sqlite3_column_int $STMT -1
527 sqlite3_column_text $STMT -1
532 ifcapable !floatingpoint {
539 CREATE TABLE t1(a VARINT, b BLOB, c VARCHAR(16));
540 INSERT INTO t1 VALUES(1, 2, 3);
541 INSERT INTO t1 VALUES('one', 'two', NULL);
542 INSERT INTO t1 VALUES(1.2, 1.3, 1.4);
544 set sql "SELECT * FROM t1"
545 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
546 sqlite3_column_count $STMT
549 check_header $STMT capi3c-5.1 {a b c} {VARINT BLOB VARCHAR(16)}
550 check_origin_header $STMT capi3c-5.1 {main main main} {t1 t1 t1} {a b c}
555 check_header $STMT capi3c-5.3 {a b c} {VARINT BLOB VARCHAR(16)}
556 check_origin_header $STMT capi3c-5.3 {main main main} {t1 t1 t1} {a b c}
557 check_data $STMT capi3c-5.4 {INTEGER INTEGER TEXT} {1 2 3} {1.0 2.0 3.0} {1 2 3}
563 check_header $STMT capi3c-5.6 {a b c} {VARINT BLOB VARCHAR(16)}
564 check_origin_header $STMT capi3c-5.6 {main main main} {t1 t1 t1} {a b c}
565 check_data $STMT capi3c-5.7 {TEXT TEXT NULL} {0 0 0} {0.0 0.0 0.0} {one two {}}
571 check_header $STMT capi3c-5.9 {a b c} {VARINT BLOB VARCHAR(16)}
572 check_origin_header $STMT capi3c-5.9 {main main main} {t1 t1 t1} {a b c}
573 check_data $STMT capi3c-5.10 {FLOAT FLOAT TEXT} {1 1 1} {1.2 1.3 1.4} {1.2 1.3 1.4}
575 do_test capi3c-5.11 {
579 do_test capi3c-5.12 {
580 sqlite3_finalize $STMT
583 do_test capi3c-5.20 {
584 set sql "SELECT a, sum(b), max(c) FROM t1 GROUP BY a"
585 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
586 sqlite3_column_count $STMT
589 check_header $STMT capi3c-5.21 {a sum(b) max(c)} {VARINT {} {}}
590 check_origin_header $STMT capi3c-5.22 {main {} {}} {t1 {} {}} {a {} {}}
591 do_test capi3c-5.23 {
592 sqlite3_finalize $STMT
596 set ::ENC [execsql {pragma encoding}]
601 set DB [sqlite3_connection_pointer db]
602 sqlite3_key $DB xyzzy
603 set sql {SELECT a FROM t1 order by rowid}
604 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
614 check_data $STMT capi3c-6.3 {INTEGER} {1} {1.0} {1}
616 sqlite3_finalize $STMT
622 do_test capi3c-6.99-misuse {
626 # This procedure sets the value of the file-format in file 'test.db'
627 # to $newval. Also, the schema cookie is incremented.
629 proc set_file_format {newval} {
630 hexio_write test.db 44 [hexio_render_int32 $newval]
631 set schemacookie [hexio_get_int [hexio_read test.db 40 4]]
633 hexio_write test.db 40 [hexio_render_int32 $schemacookie]
637 # This procedure returns the value of the file-format in file 'test.db'.
639 proc get_file_format {{fname test.db}} {
640 return [hexio_get_int [hexio_read $fname 44 4]]
643 if {![sqlite3 -has-codec]} {
644 # Test what happens when the library encounters a newer file format.
651 SELECT * FROM sqlite_master;
653 } {1 {unsupported file format}}
657 if {![sqlite3 -has-codec]} {
658 # Now test that the library correctly handles bogus entries in the
659 # sqlite_master table (schema corruption).
661 file delete -force test.db test.db-journal
671 PRAGMA writable_schema=ON;
672 INSERT INTO sqlite_master VALUES(NULL,NULL,NULL,NULL,NULL);
679 SELECT * FROM sqlite_master;
681 } {1 {malformed database schema (?)}}
683 # Build a 5-field row record. The first field is a string 'table', and
684 # subsequent fields are all NULL.
686 file delete -force test.db test.db-journal
690 PRAGMA writable_schema=ON;
691 INSERT INTO sqlite_master VALUES('table',NULL,NULL,NULL,NULL);
698 SELECT * FROM sqlite_master;
700 } {1 {malformed database schema (?)}}
703 file delete -force test.db
704 file delete -force test.db-journal
707 # Test the english language string equivalents for sqlite error codes
708 set code2english [list \
709 SQLITE_OK {not an error} \
710 SQLITE_ERROR {SQL logic error or missing database} \
711 SQLITE_PERM {access permission denied} \
712 SQLITE_ABORT {callback requested query abort} \
713 SQLITE_BUSY {database is locked} \
714 SQLITE_LOCKED {database table is locked} \
715 SQLITE_NOMEM {out of memory} \
716 SQLITE_READONLY {attempt to write a readonly database} \
717 SQLITE_INTERRUPT {interrupted} \
718 SQLITE_IOERR {disk I/O error} \
719 SQLITE_CORRUPT {database disk image is malformed} \
720 SQLITE_FULL {database or disk is full} \
721 SQLITE_CANTOPEN {unable to open database file} \
722 SQLITE_EMPTY {table contains no data} \
723 SQLITE_SCHEMA {database schema has changed} \
724 SQLITE_CONSTRAINT {constraint failed} \
725 SQLITE_MISMATCH {datatype mismatch} \
726 SQLITE_MISUSE {library routine called out of sequence} \
727 SQLITE_NOLFS {large file support is disabled} \
728 SQLITE_AUTH {authorization denied} \
729 SQLITE_FORMAT {auxiliary database format error} \
730 SQLITE_RANGE {bind or column index out of range} \
731 SQLITE_NOTADB {file is encrypted or is not a database} \
732 unknownerror {unknown error} \
736 foreach {code english} $code2english {
737 do_test capi3c-9.$test_number "sqlite3_test_errstr $code" $english
741 # Test the error message when a "real" out of memory occurs.
743 do_test capi3c-10-1 {
745 set DB [sqlite3_connection_pointer db]
746 sqlite3_memdebug_fail 0
748 select * from sqlite_master;
750 } {1 {out of memory}}
751 do_test capi3c-10-2 {
755 do_test capi3c-10-3 {
756 utf8 [sqlite3_errmsg16 $::DB]
760 sqlite3_memdebug_fail -1
763 # The following tests - capi3c-11.* - test that a COMMIT or ROLLBACK
764 # statement issued while there are still outstanding VMs that are part of
765 # the transaction fails.
767 set DB [sqlite3_connection_pointer db]
768 sqlite_register_test_function $DB func
769 do_test capi3c-11.1 {
772 CREATE TABLE t1(a, b);
773 INSERT INTO t1 VALUES(1, 'int');
774 INSERT INTO t1 VALUES(2, 'notatype');
777 do_test capi3c-11.1.1 {
778 sqlite3_get_autocommit $DB
780 do_test capi3c-11.2 {
781 set STMT [sqlite3_prepare_v2 $DB "SELECT func(b, a) FROM t1" -1 TAIL]
784 do_test capi3c-11.3 {
788 } {1 {cannot commit transaction - SQL statements in progress}}
789 do_test capi3c-11.3.1 {
790 sqlite3_get_autocommit $DB
792 do_test capi3c-11.4 {
795 do_test capi3c-11.5 {
796 sqlite3_finalize $STMT
798 do_test capi3c-11.6 {
802 } {0 {1 int 2 notatype}}
803 do_test capi3c-11.6.1 {
804 sqlite3_get_autocommit $DB
806 do_test capi3c-11.7 {
811 do_test capi3c-11.7.1 {
812 sqlite3_get_autocommit $DB
814 do_test capi3c-11.8 {
817 INSERT INTO t2 VALUES(1);
818 INSERT INTO t2 VALUES(2);
820 INSERT INTO t2 VALUES(3);
823 do_test capi3c-11.8.1 {
824 sqlite3_get_autocommit $DB
826 do_test capi3c-11.9 {
827 set STMT [sqlite3_prepare_v2 $DB "SELECT a FROM t2" -1 TAIL]
830 do_test capi3c-11.9.1 {
831 sqlite3_get_autocommit $DB
833 do_test capi3c-11.9.2 {
837 } {1 {cannot rollback transaction - SQL statements in progress}}
838 do_test capi3c-11.9.3 {
839 sqlite3_get_autocommit $DB
841 do_test capi3c-11.10 {
844 do_test capi3c-11.11 {
847 do_test capi3c-11.12 {
850 do_test capi3c-11.13 {
851 sqlite3_finalize $STMT
853 do_test capi3c-11.14 {
858 do_test capi3c-11.14.1 {
859 sqlite3_get_autocommit $DB
861 do_test capi3c-11.15 {
866 do_test capi3c-11.15.1 {
867 sqlite3_get_autocommit $DB
869 do_test capi3c-11.16 {
875 # Sanity check on the definition of 'outstanding VM'. This means any VM
876 # that has had sqlite3_step() called more recently than sqlite3_finalize() or
877 # sqlite3_reset(). So a VM that has just been prepared or reset does not
878 # count as an active VM.
879 do_test capi3c-11.17 {
884 do_test capi3c-11.18 {
885 set STMT [sqlite3_prepare_v2 $DB "SELECT a FROM t1" -1 TAIL]
890 do_test capi3c-11.19 {
893 do_test capi3c-11.20 {
898 } {1 {cannot commit transaction - SQL statements in progress}}
899 do_test capi3c-11.20 {
905 do_test capi3c-11.21 {
906 sqlite3_finalize $STMT
909 # The following tests - capi3c-12.* - check that its Ok to start a
910 # transaction while other VMs are active, and that its Ok to execute
911 # atomic updates in the same situation
913 do_test capi3c-12.1 {
914 set STMT [sqlite3_prepare_v2 $DB "SELECT a FROM t2" -1 TAIL]
917 do_test capi3c-12.2 {
919 INSERT INTO t1 VALUES(3, NULL);
922 do_test capi3c-12.3 {
924 INSERT INTO t2 VALUES(4);
927 do_test capi3c-12.4 {
930 INSERT INTO t1 VALUES(4, NULL);
933 do_test capi3c-12.5 {
936 do_test capi3c-12.5.1 {
939 do_test capi3c-12.6 {
942 do_test capi3c-12.7 {
943 sqlite3_finalize $STMT
945 do_test capi3c-12.8 {
952 # Test cases capi3c-13.* test the sqlite3_clear_bindings() and
953 # sqlite3_sleep APIs.
955 if {[llength [info commands sqlite3_clear_bindings]]>0} {
956 do_test capi3c-13.1 {
960 set STMT [sqlite3_prepare_v2 $DB "INSERT INTO t1 VALUES(?, ?)" -1 TAIL]
963 do_test capi3c-13.2 {
965 sqlite3_bind_text $STMT 1 hello 5
966 sqlite3_bind_text $STMT 2 world 5
969 do_test capi3c-13.3 {
971 sqlite3_clear_bindings $STMT
974 do_test capi3c-13-4 {
975 sqlite3_finalize $STMT
979 } {{} {} hello world {} {}}
981 if {[llength [info commands sqlite3_sleep]]>0} {
982 do_test capi3c-13-5 {
983 set ms [sqlite3_sleep 80]
984 expr {$ms==80 || $ms==1000}
988 # Ticket #1219: Make sure binding APIs can handle a NULL pointer.
990 do_test capi3c-14.1 {
991 set rc [catch {sqlite3_bind_text 0 1 hello 5} msg]
995 # Ticket #1650: Honor the nBytes parameter to sqlite3_prepare.
997 do_test capi3c-15.1 {
998 set sql {SELECT * FROM t2}
999 set nbytes [string length $sql]
1000 append sql { WHERE a==1}
1001 set STMT [sqlite3_prepare_v2 $DB $sql $nbytes TAIL]
1003 sqlite3_column_int $STMT 0
1005 do_test capi3c-15.2 {
1007 sqlite3_column_int $STMT 0
1009 do_test capi3c-15.3 {
1010 sqlite3_finalize $STMT
1013 # Make sure code is always generated even if an IF EXISTS or
1014 # IF NOT EXISTS clause is present that the table does not or
1015 # does exists. That way we will always have a prepared statement
1016 # to expire when the schema changes.
1018 do_test capi3c-16.1 {
1019 set sql {DROP TABLE IF EXISTS t3}
1020 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
1021 sqlite3_finalize $STMT
1024 do_test capi3c-16.2 {
1025 set sql {CREATE TABLE IF NOT EXISTS t1(x,y)}
1026 set STMT [sqlite3_prepare_v2 $DB $sql -1 TAIL]
1027 sqlite3_finalize $STMT
1031 # But still we do not generate code if there is no SQL
1033 do_test capi3c-16.3 {
1034 set STMT [sqlite3_prepare_v2 $DB {} -1 TAIL]
1035 sqlite3_finalize $STMT
1038 do_test capi3c-16.4 {
1039 set STMT [sqlite3_prepare_v2 $DB {;} -1 TAIL]
1040 sqlite3_finalize $STMT
1046 do_test capi3c-17.1 {
1047 set STMT [sqlite3_prepare_v2 $DB {SELECT max(a) FROM t2} -1 TAIL]
1050 do_test capi3c-17.2 {
1051 sqlite3_column_int $STMT 0
1053 do_test capi3c-17.3 {
1056 do_test capi3c-17.4 {
1058 db eval {CREATE INDEX i2 ON t2(a)}
1061 do_test capi3c-17.5 {
1062 sqlite3_column_int $STMT 0
1064 do_test capi3c-17.6 {
1067 do_test capi3c-17.7 {
1069 db eval {DROP INDEX i2}
1072 do_test capi3c-17.8 {
1073 sqlite3_column_int $STMT 0
1075 do_test capi3c-17.9 {
1078 do_test capi3c-17.10 {
1079 sqlite3_finalize $STMT
1080 set STMT [sqlite3_prepare_v2 $DB {SELECT b FROM t1 WHERE a=?} -1 TAIL]
1081 sqlite3_bind_int $STMT 1 2
1084 INSERT INTO t1 VALUES(1,'one');
1085 INSERT INTO t1 VALUES(2,'two');
1086 INSERT INTO t1 VALUES(3,'three');
1087 INSERT INTO t1 VALUES(4,'four');
1091 do_test capi3c-17.11 {
1092 sqlite3_column_text $STMT 0
1094 do_test capi3c-17.12 {
1097 do_test capi3c-17.13 {
1099 db eval {CREATE INDEX i1 ON t1(a)}
1102 do_test capi3c-17.14 {
1103 sqlite3_column_text $STMT 0
1105 do_test capi3c-17.15 {
1108 do_test capi3c-17.16 {
1110 db eval {DROP INDEX i1}
1113 do_test capi3c-17.17 {
1114 sqlite3_column_text $STMT 0
1116 do_test capi3c-17.18 {
1119 do_test capi3c-17.99 {
1120 sqlite3_finalize $STMT
1123 # On the mailing list it has been reported that finalizing after
1124 # an SQLITE_BUSY return leads to a segfault. Here we test that case.
1126 do_test capi3c-18.1 {
1128 set STMT [sqlite3_prepare_v2 $DB {SELECT max(a) FROM t1} -1 TAIL]
1131 do_test capi3c-18.2 {
1132 sqlite3_column_int $STMT 0
1134 do_test capi3c-18.3 {
1136 db2 eval {BEGIN EXCLUSIVE}
1139 do_test capi3c-18.4 {
1140 sqlite3_finalize $STMT
1142 do_test capi3c-18.5 {
1147 # Ticket #2158. The sqlite3_step() will still return SQLITE_SCHEMA
1148 # if the database schema changes in a way that makes the statement
1151 do_test capi3c-19.1 {
1153 CREATE TABLE t3(x,y);
1154 INSERT INTO t3 VALUES(1,2);
1156 set STMT [sqlite3_prepare_v2 $DB {SELECT * FROM t3} -1 TAIL]
1159 do_test capi3c-19.2 {
1160 sqlite3_column_int $STMT 0
1162 do_test capi3c-19.3 {
1165 do_test capi3c-19.4 {
1167 db eval {DROP TABLE t3}
1170 do_test capi3c-19.4.1 {
1172 } {no such table: t3}
1173 do_test capi3c-19.4.2 {
1174 sqlite3_expired $STMT
1176 do_test capi3c-19.4.3 {
1178 } {no such table: t3}
1179 do_test capi3c-19.4.4 {
1182 do_test capi3c-19.5 {
1185 CREATE TABLE t3(x,y);
1186 INSERT INTO t3 VALUES(1,2);
1190 do_test capi3c-19.5.2 {
1191 sqlite3_expired $STMT
1193 do_test capi3c-19.6 {
1194 sqlite3_column_int $STMT 1
1196 do_test capi3c-19.99 {
1197 sqlite3_finalize $STMT
1200 # Make sure a change in a separate database connection does not
1201 # cause an SQLITE_SCHEMA return.
1203 do_test capi3c-20.1 {
1204 set STMT [sqlite3_prepare_v2 $DB {SELECT * FROM t3} -1 TAIL]
1206 db2 eval {CREATE TABLE t4(x)}
1209 do_test capi3c-20.2 {
1210 sqlite3_column_int $STMT 1
1212 do_test capi3c-20.3 {
1215 do_test capi3c-20.4 {
1217 sqlite3_finalize $STMT
1220 # Test that sqlite3_step() sets the database error code correctly.
1223 ifcapable progress {
1224 do_test capi3c-21.1 {
1225 set STMT [sqlite3_prepare_v2 $DB {SELECT * FROM t3} -1 TAIL]
1226 db progress 5 "expr 1"
1228 } {SQLITE_INTERRUPT}
1229 do_test capi3c-21.2 {
1231 } {SQLITE_INTERRUPT}
1232 do_test capi3c-21.3 {
1233 sqlite3_finalize $STMT
1234 } {SQLITE_INTERRUPT}
1235 do_test capi3c-21.4 {
1236 set STMT [sqlite3_prepare $DB {SELECT * FROM t3} -1 TAIL]
1237 db progress 5 "expr 1"
1240 do_test capi3c-21.5 {
1243 do_test capi3c-21.6 {
1244 sqlite3_finalize $STMT
1245 } {SQLITE_INTERRUPT}
1246 do_test capi3c-21.7 {
1248 } {SQLITE_INTERRUPT}
1251 # Make sure sqlite3_result_error_code() returns the correct error code.
1254 do_test capi3c-22.1 {
1256 set STMT [sqlite3_prepare_v2 db {SELECT test_error('the message',3)} -1 TAIL]
1259 sqlite3_finalize $STMT
1260 do_test capi3c-22.2 {
1261 set STMT [sqlite3_prepare_v2 db {SELECT test_error('the message',4)} -1 TAIL]
1264 sqlite3_finalize $STMT
1265 do_test capi3c-22.3 {
1266 set STMT [sqlite3_prepare_v2 db {SELECT test_error('the message',16)} -1 TAIL]
1269 sqlite3_finalize $STMT
1271 # For a multi-column result set where the same table column is repeated
1272 # in multiple columns of the output, verify that doing a UTF-8 to UTF-16
1273 # conversion (or vice versa) on one column does not change the value of
1276 do_test capi3c-23.1 {
1277 set STMT [sqlite3_prepare_v2 db {SELECT b,b,b,b FROM t1} -1 TAIL]
1280 do_test capi3c-23.2 {
1281 sqlite3_column_text16 $STMT 0
1282 sqlite3_column_text $STMT 1
1284 do_test capi3c-23.3 {
1285 sqlite3_column_text16 $STMT 2
1286 sqlite3_column_text $STMT 3
1288 sqlite3_finalize $STMT
1289 do_test capi3c-23.4 {
1290 set STMT [sqlite3_prepare_v2 db {SELECT b||'x',b,b,b FROM t1} -1 TAIL]
1293 do_test capi3c-23.5 {
1294 sqlite3_column_text16 $STMT 0
1295 sqlite3_column_text $STMT 1
1297 do_test capi3c-23.6 {
1298 sqlite3_column_text16 $STMT 2
1299 sqlite3_column_text $STMT 3
1301 sqlite3_finalize $STMT