Path: csiph.com!usenet.pasdenom.info!gegeweb.org!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'exercise': 0.04; 'context': 0.07; 'finally:': 0.07; 'none:': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:method': 0.09; 'try:': 0.09; 'api': 0.11; 'def': 0.12; 'random': 0.14; 'clauses.': 0.16; 'corrupt': 0.16; 'lite': 0.16; 'oserror': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'valueerror': 0.16; 'exception': 0.16; 'wrote:': 0.18; 'all,': 0.19; 'bit': 0.19; '>>>': 0.22; 'import': 0.22; 'creating': 0.23; 'header:User- Agent:1': 0.23; 'bytes': 0.24; 'header:X-Complaints-To:1': 0.27; 'idea': 0.28; 'function': 0.29; 'raise': 0.29; 'errors': 0.30; "i'm": 0.30; 'code': 0.31; 'you?': 0.31; '"",': 0.31; 'away.': 0.31; 'invoke': 0.31; 'way?': 0.31; 'file': 0.32; 'open': 0.33; '(most': 0.33; 'table': 0.34; 'subject:the': 0.34; 'subject:with': 0.35; 'connection': 0.35; 'except': 0.35; 'there': 0.35; 'yield': 0.36; 'manager': 0.38; 'to:addr:python-list': 0.38; 'recent': 0.39; 'to:addr:python.org': 0.39; 'unable': 0.39; 'received:org': 0.40; 'catch': 0.60; 'soon': 0.63; 'note:': 0.66; 'close': 0.67; 'repeat': 0.74; 'needed:': 0.84; 'subject:try': 0.84; 'encrypted': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: try pattern for database connection with the close method Date: Sat, 21 Feb 2015 16:22:36 +0100 Organization: None References: <6trfeate2ppvm1mcapgr0g4g2fd3vceab6@4ax.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p57bd9545.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 88 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1424532168 news.xs4all.nl 2925 [2001:888:2000:d::a6]:52289 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:86047 Mario Figueiredo wrote: > Hello all, > > I'm using the following pattern for db access that requires me to > close the connection as soon as it is not needed: > > import sqlite3 as lite > > try: > db = lite.connect('data.db') > except lite.DatabaseError: > raise OSError('database file corrupt or not found.') > else: > try: > with db: > db.execute(sql, parms) > except lite.IntegrityError: > raise ValueError('invalid data') > finally: > db.close() > > Since it's a bit verbose, Why would you care about a few lines? You don't repeat them, do you? Put the code into a function or a context manager and invoke it with >>> my_execute(sql, parms) or >>> with my_db() as db: ... db.execute(sql, parms) > is there a better way? > > Note: The user of this API has the whole database functionality > abstracted away. Hence the exception channeling in the except clauses. db.execute() may trigger other sqlite-related errors including DatabaseError: >>> import sqlite3 >>> db = sqlite3.connect("/dev/full") >>> db.execute("create table foo (bar, baz);") Traceback (most recent call last): File "", line 1, in sqlite3.OperationalError: unable to open database file >>> import os >>> with open("data.db", "wb") as f: ... f.write(os.urandom(1024)) # put random bytes into data.db ... # chances of creating a valid db ... # left as an exercise ;) ... 1024 >>> db = sqlite3.connect("data.db") >>> db.execute("create table foo (bar, baz);") Traceback (most recent call last): File "", line 1, in sqlite3.DatabaseError: file is encrypted or is not a database If you want to catch these, too: @contextlib.contextmanager def my_db(): db = None try: db = sqlite3.connect("data.db") with db: yield db # db.execute() if you don't buy # into the contextmanager idea except sqlite3.IntegrityError: raise ValueError except sqlite3.DatabaseError: raise OSError except sqlite3.Error: raise WhateverYouNeed finally: if db is not None: db.close() with my_db() as db: db.execute("select * from sqlite_master;")