Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to allow use of detect_types parameter #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions bottle_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ class SQLitePlugin(object):
unicode = str

def __init__(self, dbfile=':memory:', autocommit=True, dictrows=True,
keyword='db', text_factory=unicode):
keyword='db', text_factory=unicode, detect_types=0):
self.dbfile = dbfile
self.autocommit = autocommit
self.dictrows = dictrows
self.keyword = keyword
self.text_factory = text_factory
self.detect_types = detect_types

def setup(self, app):
''' Make sure that other installed plugins don't affect the same
Expand Down Expand Up @@ -99,6 +100,7 @@ def apply(self, callback, route):
dictrows = g('dictrows', self.dictrows)
keyword = g('keyword', self.keyword)
text_factory = g('keyword', self.text_factory)
detect_types = g('keyword', self.detect_types)

# Test if the original callback accepts a 'db' keyword.
# Ignore it if it does not need a database handle.
Expand All @@ -108,7 +110,7 @@ def apply(self, callback, route):

def wrapper(*args, **kwargs):
# Connect to the database
db = sqlite3.connect(dbfile)
db = sqlite3.connect(dbfile,detect_types=detect_types)
# set text factory
db.text_factory = text_factory
# This enables column access by name: row['column_name']
Expand Down