From 54a6dee35d1b84e26a99ff02bc0b49d35a32c618 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 14 Oct 2012 15:32:33 -0500 Subject: [PATCH] changed default driver for sqlite, thanks Niphlod --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index b253c64f..160c221c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.1.0 (2012-10-14 15:08:21) dev +Version 2.1.0 (2012-10-14 15:32:29) dev diff --git a/gluon/dal.py b/gluon/dal.py index 3b802192..a0c38767 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -2039,7 +2039,7 @@ class BaseAdapter(ConnectionPool): ################################################################################### class SQLiteAdapter(BaseAdapter): - drivers = ('sqlite3','sqlite2') + drivers = ('sqlite2','sqlite3') can_select_for_update = None # support ourselves with BEGIN TRANSACTION