import less(1)
[unleashed/tickless.git] / usr / src / lib / libsqlite / test / bind.test
blob0f8725566616cb8c31fb4d8f3351e379fd3c3b6f
2 #pragma ident   "%Z%%M% %I%     %E% SMI"
4 # 2003 September 6
6 # The author disclaims copyright to this source code.  In place of
7 # a legal notice, here is a blessing:
9 #    May you do good and not evil.
10 #    May you find forgiveness for yourself and forgive others.
11 #    May you share freely, never taking more than you give.
13 #***********************************************************************
14 # This file implements regression tests for SQLite library.  The
15 # focus of this script testing the sqlite_bind API.
17 # $Id: bind.test,v 1.1 2003/09/06 22:45:21 drh Exp $
20 set testdir [file dirname $argv0]
21 source $testdir/tester.tcl
23 do_test bind-1.1 {
24   db close
25   set DB [sqlite db test.db]
26   execsql {CREATE TABLE t1(a,b,c)}
27   set VM [sqlite_compile $DB {INSERT INTO t1 VALUES(?,?,?)} TAIL]
28   set TAIL
29 } {}
30 do_test bind-1.2 {
31   sqlite_step $VM N VALUES COLNAMES
32 } {SQLITE_DONE}
33 do_test bind-1.3 {
34   execsql {SELECT rowid, * FROM t1}
35 } {1 {} {} {}}
36 do_test bind-1.4 {
37   sqlite_reset $VM
38   sqlite_bind $VM 1 {test value 1} normal
39   sqlite_step $VM N VALUES COLNAMES
40 } SQLITE_DONE
41 do_test bind-1.5 {
42   execsql {SELECT rowid, * FROM t1}
43 } {1 {} {} {} 2 {test value 1} {} {}}
44 do_test bind-1.6 {
45   sqlite_reset $VM
46   sqlite_bind $VM 3 {'test value 2'} normal
47   sqlite_step $VM N VALUES COLNAMES
48 } SQLITE_DONE
49 do_test bind-1.7 {
50   execsql {SELECT rowid, * FROM t1}
51 } {1 {} {} {} 2 {test value 1} {} {} 3 {test value 1} {} {'test value 2'}}
52 do_test bind-1.8 {
53   sqlite_reset $VM
54   set sqlite_static_bind_value 123
55   sqlite_bind $VM 1 {} static
56   sqlite_bind $VM 2 {abcdefg} normal
57   sqlite_bind $VM 3 {} null
58   execsql {DELETE FROM t1}
59   sqlite_step $VM N VALUES COLNAMES
60   execsql {SELECT rowid, * FROM t1}
61 } {1 123 abcdefg {}}
62 do_test bind-1.9 {
63   sqlite_reset $VM
64   sqlite_bind $VM 1 {456} normal
65   sqlite_step $VM N VALUES COLNAMES
66   execsql {SELECT rowid, * FROM t1}
67 } {1 123 abcdefg {} 2 456 abcdefg {}}
70 do_test bind-1.99 {
71   sqlite_finalize $VM
72 } {}
75 finish_test