We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 641d89a + 90c02c9 commit cf7a34dCopy full SHA for cf7a34d
src/SQLite.jl
@@ -45,7 +45,7 @@ function connect(file::String)
45
global sqlitedb
46
handle = Array(Ptr{Void},1)
47
if @FAILED sqlite3_open(file,handle)
48
- error("[sqlite]: Error opening $file; $(bytestring(sqlite3_errmsg(conn.handle)))")
+ error("[sqlite]: Error opening $file; $(bytestring(sqlite3_errmsg(sqlitedb.handle)))")
49
else
50
return (sqlitedb = SQLiteDB(file,handle[1],null_resultset))
51
end
0 commit comments