OLD | NEW |
1 # 2007 May 1 | 1 # 2007 May 1 |
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 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 # an error message was set using a call similar to sqlite3_mprintf(zErr), | 681 # an error message was set using a call similar to sqlite3_mprintf(zErr), |
682 # where zErr is an arbitrary string. This is no good if the string contains | 682 # where zErr is an arbitrary string. This is no good if the string contains |
683 # characters that can be mistaken for printf() formatting directives. | 683 # characters that can be mistaken for printf() formatting directives. |
684 # | 684 # |
685 do_test incrblob-9.1 { | 685 do_test incrblob-9.1 { |
686 list [catch { db incrblob t1 "A tricky column name %s%s" 1 } msg] $msg | 686 list [catch { db incrblob t1 "A tricky column name %s%s" 1 } msg] $msg |
687 } {1 {no such column: "A tricky column name %s%s"}} | 687 } {1 {no such column: "A tricky column name %s%s"}} |
688 | 688 |
689 | 689 |
690 finish_test | 690 finish_test |
OLD | NEW |