sqlite seems to perform ok for me

This commit is contained in:
sqlcoder 2010-02-06 10:28:17 +00:00
parent ef2a8aca14
commit 4a0fcd62a0

View File

@ -380,8 +380,8 @@ class Database:
import sqlite3 import sqlite3
if use_pool: if use_pool:
sqlite3 = pool.manage(sqlite3, pool_size=1) sqlite3 = pool.manage(sqlite3, pool_size=1)
else: #else:
log.warning("SQLite won't work well without 'sqlalchemy' installed.") # log.warning("SQLite won't work well without 'sqlalchemy' installed.")
if database != ":memory:": if database != ":memory:":
if not os.path.isdir(self.config.dir_database): if not os.path.isdir(self.config.dir_database):