create db automatically if using sqlite

This commit is contained in:
sqlcoder 2010-03-07 10:30:56 +00:00
parent 14a7784124
commit 014ddedc01

View File

@ -382,6 +382,7 @@ class Database:
print msg
raise FpdbError(msg)
elif backend == Database.SQLITE:
create = True
import sqlite3
if use_pool:
sqlite3 = pool.manage(sqlite3, pool_size=1)