diff options
author | drh <drh@noemail.net> | 2006-01-03 00:33:50 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-03 00:33:50 +0000 |
commit | dddca28608a7affaa923cd7032ae42ed937e444c (patch) | |
tree | 6268513e43553f7921bf62169f0328cf3889c57c /test/blob.test | |
parent | 88f474a9380d3a890d484497bc8a8beaf5877a93 (diff) | |
download | sqlite-dddca28608a7affaa923cd7032ae42ed937e444c.tar.gz sqlite-dddca28608a7affaa923cd7032ae42ed937e444c.zip |
The sqlite TCL command no longer returns the hex address of the sqlite3*
structure. Instead there is a new command in testfixture to find that
information. (CVS 2852)
FossilOrigin-Name: 70b228575e045bc56013aab945334203ceb31d8b
Diffstat (limited to 'test/blob.test')
-rw-r--r-- | test/blob.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/blob.test b/test/blob.test index 4e49f3864..b3c22b487 100644 --- a/test/blob.test +++ b/test/blob.test @@ -10,7 +10,7 @@ #*********************************************************************** # This file implements regression tests for SQLite library. # -# $Id: blob.test,v 1.4 2005/08/23 11:17:59 drh Exp $ +# $Id: blob.test,v 1.5 2006/01/03 00:33:50 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -104,7 +104,8 @@ do_test blob-2.4 { # Try to bind a blob value to a prepared statement. do_test blob-3.0 { - set DB [sqlite3 db2 test.db] + sqlite3 db2 test.db + set DB [sqlite3_connection_pointer db2] set STMT [sqlite3_prepare $DB "DELETE FROM t1 WHERE a = ?" -1 DUMMY] sqlite3_bind_blob $STMT 1 "\x12\x34\x56" 3 sqlite3_step $STMT |