Switch to using the testing hello.db database

This commit is contained in:
Pekka Enberg
2024-06-19 16:31:44 +03:00
parent de11402a4a
commit 706c4e60ae

View File

@@ -3,7 +3,7 @@
set sqlite_exec [expr {[info exists env(SQLITE_EXEC)] ? $env(SQLITE_EXEC) : "sqlite3"}]
proc evaluate_sql {sqlite_exec sql} {
set command [list $sqlite_exec database.db $sql]
set command [list $sqlite_exec testing/hello.db $sql]
set output [exec {*}$command]
return $output
}