| OLD | NEW |
| 1 # 2010 May 12 | 1 # 2010 May 12 |
| 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 13 matching lines...) Expand all Loading... |
| 24 do_test bug-20100512-2 { | 24 do_test bug-20100512-2 { |
| 25 sqlite3_bind_parameter_count $STMT | 25 sqlite3_bind_parameter_count $STMT |
| 26 } 2 | 26 } 2 |
| 27 do_test bug-20100512-3 { | 27 do_test bug-20100512-3 { |
| 28 sqlite3_bind_int $STMT 1 123 | 28 sqlite3_bind_int $STMT 1 123 |
| 29 sqlite3_bind_int $STMT 2 456 | 29 sqlite3_bind_int $STMT 2 456 |
| 30 sqlite3_step $STMT | 30 sqlite3_step $STMT |
| 31 sqlite3_column_int $STMT 0 | 31 sqlite3_column_int $STMT 0 |
| 32 } {555} | 32 } {555} |
| 33 sqlite3_finalize $STMT | 33 sqlite3_finalize $STMT |
| OLD | NEW |