OLD | NEW |
1 # 2012 May 15 | 1 # 2012 May 15 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 do_test 1.8 { | 103 do_test 1.8 { |
104 db3 close | 104 db3 close |
105 sqlite3 db4 test.db | 105 sqlite3 db4 test.db |
106 catchsql { SELECT * FROM v1 } db4 | 106 catchsql { SELECT * FROM v1 } db4 |
107 } {1 {no such table: v1}} | 107 } {1 {no such table: v1}} |
108 | 108 |
109 | 109 |
110 foreach db {db1 db2 db3 db4} { catch { $db close } } | 110 foreach db {db1 db2 db3 db4} { catch { $db close } } |
111 sqlite3_enable_shared_cache $::enable_shared_cache | 111 sqlite3_enable_shared_cache $::enable_shared_cache |
112 finish_test | 112 finish_test |
OLD | NEW |