aboutsummaryrefslogtreecommitdiff
path: root/test/blob.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2004-06-19 00:16:31 +0000
committerdrh <drh@noemail.net>2004-06-19 00:16:31 +0000
commitef4ac8f9df7e0dcf4475dc14bf16ee28e5bd3ccf (patch)
treee4dbdd3ace2b1c7e36386fc0c81b3f60c74c5e05 /test/blob.test
parent81c95efaf547f7eb17c5cb2980de2ea6e7910c70 (diff)
downloadsqlite-ef4ac8f9df7e0dcf4475dc14bf16ee28e5bd3ccf.tar.gz
sqlite-ef4ac8f9df7e0dcf4475dc14bf16ee28e5bd3ccf.zip
Change the name of the TCL command from "sqlite" to "sqlite3" so that both
SQLite version 2 and SQLite version 3 can be used by Tcl at the same time. (CVS 1626) FossilOrigin-Name: d705d051bed2b92b6c3bbcc75fe5b056633b9c31
Diffstat (limited to 'test/blob.test')
-rw-r--r--test/blob.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/blob.test b/test/blob.test
index 5eb876146..93009f75d 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.1 2004/05/27 13:55:27 danielk1977 Exp $
+# $Id: blob.test,v 1.2 2004/06/19 00:16:31 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -99,7 +99,7 @@ do_test blob-2.4 {
# Try to bind a blob value to a prepared statement.
do_test blob-3.0 {
- set DB [sqlite db2 test.db]
+ set DB [sqlite3 db2 test.db]
set STMT [sqlite3_prepare $DB "DELETE FROM t1 WHERE a = ?" -1 DUMMY]
sqlite3_bind_blob $STMT 1 "\x12\x34\x56" 3
sqlite3_step $STMT