sl@0
|
1 |
# 2007 Sep 3
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# Tests on the sqlite3_open_v2() interface.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: openv2.test,v 1.1 2007/09/03 15:19:36 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
|
sl@0
|
19 |
db close
|
sl@0
|
20 |
file delete -force test.db test.db-journal
|
sl@0
|
21 |
do_test openv2-1.1 {
|
sl@0
|
22 |
set rc [catch {sqlite3 db test.db -create 0} msg]
|
sl@0
|
23 |
lappend rc $msg
|
sl@0
|
24 |
} {1 {unable to open database file}}
|
sl@0
|
25 |
do_test openv2-1.2 {
|
sl@0
|
26 |
info commands db
|
sl@0
|
27 |
} {}
|
sl@0
|
28 |
do_test openv2-1.3 {
|
sl@0
|
29 |
sqlite3 db test.db
|
sl@0
|
30 |
db eval {CREATE TABLE t1(x)}
|
sl@0
|
31 |
db close
|
sl@0
|
32 |
sqlite3 db test.db -readonly 1
|
sl@0
|
33 |
db eval {SELECT name FROM sqlite_master}
|
sl@0
|
34 |
} {t1}
|
sl@0
|
35 |
do_test openv2-1.4 {
|
sl@0
|
36 |
catchsql {
|
sl@0
|
37 |
INSERT INTO t1 VALUES(123)
|
sl@0
|
38 |
}
|
sl@0
|
39 |
} {1 {attempt to write a readonly database}}
|
sl@0
|
40 |
|
sl@0
|
41 |
finish_test
|