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