From 4a0fcd62a065bc6083e2931788582c54fdc062c7 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 6 Feb 2010 10:28:17 +0000 Subject: [PATCH] sqlite seems to perform ok for me --- pyfpdb/Database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index e0649b78..0303aad2 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -380,8 +380,8 @@ class Database: import sqlite3 if use_pool: sqlite3 = pool.manage(sqlite3, pool_size=1) - else: - log.warning("SQLite won't work well without 'sqlalchemy' installed.") + #else: + # log.warning("SQLite won't work well without 'sqlalchemy' installed.") if database != ":memory:": if not os.path.isdir(self.config.dir_database):