First public contribution.
3 # Portions Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
5 # The author disclaims copyright to this source code. In place of
6 # a legal notice, here is a blessing:
8 # May you do good and not evil.
9 # May you find forgiveness for yourself and forgive others.
10 # May you share freely, never taking more than you give.
12 #***********************************************************************
13 # This file implements regression tests for SQLite library. The
14 # focus of this script testing the sqlite_bind API.
16 # $Id: bind.test,v 1.44 2008/07/09 01:39:44 drh Exp $
19 set testdir [file dirname $argv0]
20 source $testdir/tester.tcl
22 proc sqlite_step {stmt N VALS COLS} {
28 set rc [sqlite3_step $stmt]
29 for {set i 0} {$i < [sqlite3_column_count $stmt]} {incr i} {
30 lappend cols [sqlite3_column_name $stmt $i]
32 for {set i 0} {$i < [sqlite3_data_count $stmt]} {incr i} {
33 lappend vals [sqlite3_column_text $stmt $i]
40 set DB [sqlite3_connection_pointer db]
41 execsql {CREATE TABLE t1(a,b,c);}
42 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(:1,?,:abc)} -1 TAIL]
46 sqlite3_bind_parameter_count $VM
49 sqlite3_bind_parameter_name $VM 1
52 sqlite3_bind_parameter_name $VM 2
55 sqlite3_bind_parameter_name $VM 3
58 sqlite_step $VM N VALUES COLNAMES
61 execsql {SELECT rowid, * FROM t1}
65 sqlite_bind $VM 1 {test value 1} normal
66 sqlite_step $VM N VALUES COLNAMES
69 execsql {SELECT rowid, * FROM t1}
70 } {1 {} {} {} 2 {test value 1} {} {}}
73 sqlite_bind $VM 3 {'test value 2'} normal
74 sqlite_step $VM N VALUES COLNAMES
77 execsql {SELECT rowid, * FROM t1}
78 } {1 {} {} {} 2 {test value 1} {} {} 3 {test value 1} {} {'test value 2'}}
81 set sqlite_static_bind_value 123
82 sqlite_bind $VM 1 {} static
83 sqlite_bind $VM 2 {abcdefg} normal
84 sqlite_bind $VM 3 {} null
85 execsql {DELETE FROM t1}
86 sqlite_step $VM N VALUES COLNAMES
87 execsql {SELECT rowid, * FROM t1}
91 sqlite_bind $VM 1 {456} normal
92 sqlite_step $VM N VALUES COLNAMES
93 execsql {SELECT rowid, * FROM t1}
94 } {1 123 abcdefg {} 2 456 abcdefg {}}
98 sqlite3_prepare db {INSERT INTO t1 VALUES($abc:123,?,:abc)} -1 TAIL
101 } {1 {(1) near ":123": syntax error}}
104 sqlite3_prepare db {INSERT INTO t1 VALUES(@abc:xyz,?,:abc)} -1 TAIL
107 } {1 {(1) near ":xyz": syntax error}}
113 # Prepare the statement in different ways depending on whether or not
114 # the $var processing is compiled into the library.
121 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES($one,$::two,$x(-z-))}\
129 ifcapable {!tclvar} {
134 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(:one,:two,:_)} -1 TX]
143 sqlite3_bind_parameter_count $VM
146 sqlite3_bind_parameter_name $VM 1
149 sqlite3_bind_parameter_name $VM 2
152 sqlite3_bind_parameter_name $VM 3
155 sqlite3_bind_parameter_index $VM $v1
158 sqlite3_bind_parameter_index $VM $v2
161 sqlite3_bind_parameter_index $VM $v3
164 sqlite3_bind_parameter_index $VM {:hi}
169 sqlite3_bind_int $VM 1 123
170 sqlite3_bind_int $VM 2 456
171 sqlite3_bind_int $VM 3 789
172 sqlite_step $VM N VALUES COLNAMES
174 execsql {SELECT rowid, * FROM t1}
177 sqlite3_bind_int $VM 2 -2000000000
178 sqlite3_bind_int $VM 3 2000000000
179 sqlite_step $VM N VALUES COLNAMES
181 execsql {SELECT rowid, * FROM t1}
182 } {1 123 456 789 2 123 -2000000000 2000000000}
184 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
185 } {integer integer integer integer integer integer}
194 sqlite3_bind_int64 $VM 1 32
195 sqlite3_bind_int64 $VM 2 -2000000000000
196 sqlite3_bind_int64 $VM 3 2000000000000
197 sqlite_step $VM N VALUES COLNAMES
199 execsql {SELECT rowid, * FROM t1}
200 } {1 32 -2000000000000 2000000000000}
202 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
203 } {integer integer integer}
212 sqlite3_bind_double $VM 1 1234.1234
213 sqlite3_bind_double $VM 2 0.00001
214 sqlite3_bind_double $VM 3 123456789
215 sqlite_step $VM N VALUES COLNAMES
217 set x [execsql {SELECT rowid, * FROM t1}]
218 regsub {1e-005} $x {1e-05} y
220 } {1 1234.1234 1e-05 123456789.0}
222 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
230 #Symbian OS: this test is failing due to problems in printf format spec implementation
232 if {$::tcl_platform(platform)!="symbian"} {
234 sqlite3_bind_double $VM 1 NaN
235 sqlite3_bind_double $VM 2 1e300
236 sqlite3_bind_double $VM 3 -1e-300
237 sqlite_step $VM N VALUES COLNAMES
239 set x [execsql {SELECT rowid, * FROM t1}]
240 regsub {1e-005} $x {1e-05} y
242 } {1 {} 1e+300 -1e-300}
244 #Symbian OS: this test is commented because depends on 4.4
247 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
258 sqlite3_bind_null $VM 1
259 sqlite3_bind_null $VM 2
260 sqlite3_bind_null $VM 3
261 sqlite_step $VM N VALUES COLNAMES
263 execsql {SELECT rowid, * FROM t1}
266 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
276 sqlite3_bind_text $VM 1 hellothere 5
277 sqlite3_bind_text $VM 2 ".." 1
278 sqlite3_bind_text $VM 3 world\000 -1
279 sqlite_step $VM N VALUES COLNAMES
281 execsql {SELECT rowid, * FROM t1}
284 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
292 # Make sure zeros in a string work.
295 db eval {DELETE FROM t1}
296 sqlite3_bind_text $VM 1 hello\000there\000 12
297 sqlite3_bind_text $VM 2 hello\000there\000 11
298 sqlite3_bind_text $VM 3 hello\000there\000 -1
299 sqlite_step $VM N VALUES COLNAMES
301 execsql {SELECT * FROM t1}
302 } {hello hello hello}
303 set enc [db eval {PRAGMA encoding}]
306 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
307 } {68656C6C6F00746865726500 68656C6C6F007468657265 68656C6C6F}
308 } elseif {$enc=="UTF-16le"} {
310 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
311 } {680065006C006C006F000000740068006500720065000000 680065006C006C006F00000074006800650072006500 680065006C006C006F00}
312 } elseif {$enc=="UTF-16be"} {
314 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
315 } {00680065006C006C006F0000007400680065007200650000 00680065006C006C006F000000740068006500720065 00680065006C006C006F}
318 set "Unknown database encoding: $::enc"
322 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
333 sqlite3_bind_text16 $VM 1 [encoding convertto unicode hellothere] 10
334 sqlite3_bind_text16 $VM 2 [encoding convertto unicode ""] 0
335 sqlite3_bind_text16 $VM 3 [encoding convertto unicode world] 10
336 sqlite_step $VM N VALUES COLNAMES
338 execsql {SELECT rowid, * FROM t1}
341 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
344 db eval {DELETE FROM t1}
345 sqlite3_bind_text16 $VM 1 [encoding convertto unicode hi\000yall\000] 16
346 sqlite3_bind_text16 $VM 2 [encoding convertto unicode hi\000yall\000] 14
347 sqlite3_bind_text16 $VM 3 [encoding convertto unicode hi\000yall\000] -1
348 sqlite_step $VM N VALUES COLNAMES
350 execsql {SELECT * FROM t1}
354 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
355 } {68690079616C6C00 68690079616C6C 6869}
356 } elseif {$enc=="UTF-16le"} {
358 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
359 } {680069000000790061006C006C000000 680069000000790061006C006C00 68006900}
360 } elseif {$enc=="UTF-16be"} {
362 execsql {SELECT hex(a), hex(b), hex(c) FROM t1}
363 } {00680069000000790061006C006C0000 00680069000000790061006C006C 00680069}
366 execsql {SELECT typeof(a), typeof(b), typeof(c) FROM t1}
370 execsql {DELETE FROM t1;}
373 # Test that the 'out of range' error works.
375 catch { sqlite3_bind_null $VM 0 }
379 } {bind or column index out of range}
382 encoding convertfrom unicode [sqlite3_errmsg16 $DB]
383 } {bind or column index out of range}
386 sqlite3_bind_null $VM 1
390 catch { sqlite3_bind_null $VM 4 }
394 } {bind or column index out of range}
397 encoding convertfrom unicode [sqlite3_errmsg16 $DB]
398 } {bind or column index out of range}
402 catch { sqlite3_bind_blob $VM 0 "abc" 3 }
405 catch { sqlite3_bind_blob $VM 4 "abc" 3 }
408 catch { sqlite3_bind_text $VM 0 "abc" 3 }
412 catch { sqlite3_bind_text16 $VM 4 "abc" 2 }
416 catch { sqlite3_bind_int $VM 0 5 }
419 catch { sqlite3_bind_int $VM 4 5 }
422 catch { sqlite3_bind_double $VM 0 5.0 }
425 catch { sqlite3_bind_double $VM 4 6.0 }
434 CREATE TABLE t2(a,b,c,d,e,f);
437 sqlite3_prepare $DB {
438 INSERT INTO t2(a) VALUES(?0)
442 } {1 {(1) variable number must be between ?1 and ?999}}
445 sqlite3_prepare $DB {
446 INSERT INTO t2(a) VALUES(?1000)
450 } {1 {(1) variable number must be between ?1 and ?999}}
453 sqlite3_prepare $DB {
454 INSERT INTO t2(a,b) VALUES(?1,?999)
457 sqlite3_bind_parameter_count $VM
459 catch {sqlite3_finalize $VM}
462 sqlite3_prepare $DB {
463 INSERT INTO t2(a,b) VALUES(?2,?998)
466 sqlite3_bind_parameter_count $VM
468 catch {sqlite3_finalize $VM}
471 sqlite3_prepare $DB {
472 INSERT INTO t2(a,b,c,d) VALUES(?1,?997,?,?)
475 sqlite3_bind_parameter_count $VM
478 sqlite3_bind_int $VM 1 1
479 sqlite3_bind_int $VM 997 999
480 sqlite3_bind_int $VM 998 1000
481 sqlite3_bind_int $VM 999 1001
488 execsql {SELECT * FROM t2}
489 } {1 999 1000 1001 {} {}}
494 sqlite3_prepare $DB {
495 INSERT INTO t2(a,b,c,d,e,f) VALUES(:abc,$abc,:abc,$ab,$abc,:abc)
498 sqlite3_bind_parameter_count $VM
503 ifcapable {!tclvar} {
506 sqlite3_prepare $DB {
507 INSERT INTO t2(a,b,c,d,e,f) VALUES(:abc,:xyz,:abc,:xy,:xyz,:abc)
510 sqlite3_bind_parameter_count $VM
516 sqlite3_bind_parameter_index $VM :abc
519 sqlite3_bind_parameter_index $VM $v1
522 sqlite3_bind_parameter_index $VM $v2
525 sqlite3_bind_parameter_name $VM 1
528 sqlite3_bind_parameter_name $VM 2
531 sqlite3_bind_parameter_name $VM 3
533 do_test bind-10.7.1 {
534 sqlite3_bind_parameter_name 0 1 ;# Ignore if VM is NULL
536 do_test bind-10.7.2 {
537 sqlite3_bind_parameter_name $VM 0 ;# Ignore if index too small
539 do_test bind-10.7.3 {
540 sqlite3_bind_parameter_name $VM 4 ;# Ignore if index is too big
543 sqlite3_bind_int $VM 1 1
544 sqlite3_bind_int $VM 2 2
545 sqlite3_bind_int $VM 3 3
548 do_test bind-10.8.1 {
549 # Binding attempts after program start should fail
551 sqlite3_bind_int $VM 1 1
559 execsql {SELECT * FROM t2}
560 } {1 999 1000 1001 {} {} 1 2 1 3 2 1}
565 # catch {sqlite3_finalize $VM}
567 sqlite3_prepare $DB {
568 INSERT INTO t2(a,b,c,d,e,f) VALUES(:abc,?,?4,:pqr,:abc,?4)
571 sqlite3_bind_parameter_count $VM
573 do_test bind-10.11.1 {
574 sqlite3_bind_parameter_index 0 :xyz ;# ignore NULL VM arguments
577 sqlite3_bind_parameter_index $VM :xyz
580 sqlite3_bind_parameter_index $VM {}
583 sqlite3_bind_parameter_index $VM :pqr
586 sqlite3_bind_parameter_index $VM ?4
589 sqlite3_bind_parameter_name $VM 1
592 sqlite3_bind_parameter_name $VM 2
595 sqlite3_bind_parameter_name $VM 3
598 sqlite3_bind_parameter_name $VM 4
601 sqlite3_bind_parameter_name $VM 5
603 catch {sqlite3_finalize $VM}
605 # Make sure we catch an unterminated "(" in a Tcl-style variable name
609 catchsql {SELECT * FROM sqlite_master WHERE name=$abc(123 and sql NOT NULL;}
610 } {1 {unrecognized token: "$abc(123"}}
613 if {[execsql {pragma encoding}]=="UTF-8"} {
614 # Test the ability to bind text that contains embedded '\000' characters.
615 # Make sure we can recover the entire input string.
619 CREATE TABLE t3(x BLOB);
621 set VM [sqlite3_prepare $DB {INSERT INTO t3 VALUES(?)} -1 TAIL]
622 sqlite_bind $VM 1 not-used blob10
626 SELECT typeof(x), length(x), quote(x),
627 length(cast(x AS BLOB)), quote(cast(x AS BLOB)) FROM t3
629 } {text 3 'abc' 10 X'6162630078797A007071'}
631 sqlite3_create_function $DB
633 SELECT quote(cast(x_coalesce(x) AS blob)) FROM t3
635 } {X'6162630078797A007071'}
638 # Test the operation of sqlite3_clear_bindings
641 set VM [sqlite3_prepare $DB {SELECT ?,?,?} -1 TAIL]
643 list [sqlite3_column_type $VM 0] [sqlite3_column_type $VM 1] \
644 [sqlite3_column_type $VM 2]
648 sqlite3_bind_int $VM 1 1
649 sqlite3_bind_int $VM 2 2
650 sqlite3_bind_int $VM 3 3
652 list [sqlite3_column_type $VM 0] [sqlite3_column_type $VM 1] \
653 [sqlite3_column_type $VM 2]
654 } {INTEGER INTEGER INTEGER}
658 list [sqlite3_column_type $VM 0] [sqlite3_column_type $VM 1] \
659 [sqlite3_column_type $VM 2]
660 } {INTEGER INTEGER INTEGER}
663 sqlite3_clear_bindings $VM
665 list [sqlite3_column_type $VM 0] [sqlite3_column_type $VM 1] \
666 [sqlite3_column_type $VM 2]