summaryrefslogtreecommitdiff
path: root/test/attach.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/attach.test')
-rw-r--r--test/attach.test19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/attach.test b/test/attach.test
index d57f5bf..be5f988 100644
--- a/test/attach.test
+++ b/test/attach.test
@@ -51,6 +51,25 @@ do_test attach-1.3 {
SELECT * FROM two.t2;
}
} {1 x 2 y}
+
+# Tests for the sqlite3_db_filename interface
+#
+do_test attach-1.3.1 {
+ file tail [sqlite3_db_filename db main]
+} {test.db}
+do_test attach-1.3.2 {
+ file tail [sqlite3_db_filename db MAIN]
+} {test.db}
+do_test attach-1.3.3 {
+ file tail [sqlite3_db_filename db temp]
+} {}
+do_test attach-1.3.4 {
+ file tail [sqlite3_db_filename db two]
+} {test2.db}
+do_test attach-1.3.5 {
+ file tail [sqlite3_db_filename db three]
+} {}
+
do_test attach-1.4 {
execsql {
SELECT * FROM t2;