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; 'interfaces': 0.04; 'parameters': 0.04; 'value,': 0.04; 'argument': 0.05; 'method.': 0.07; 'referring': 0.07; "subject:' ": 0.07; 'back-end': 0.09; 'lawrence': 0.09; 'parameter': 0.09; 'referenced': 0.09; 'cc:addr :python-list': 0.11; '"..."': 0.16; '(other': 0.16; '-tkc': 0.16; 'essential,': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'placeholder': 0.16; 'received:10.225': 0.16; 'sqlite': 0.16; 'subject:dates': 0.16; 'subject:sqlite3': 0.16; 'tuple': 0.16; 'wrote:': 0.18; 'code,': 0.22; 'cc:addr:python.org': 0.22; 'processor': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'query': 0.26; 'second': 0.26; 'values': 0.27; 'header:In-Reply- To:1': 0.27; 'parameters.': 0.31; 'run': 0.32; 'subject: (': 0.35; 'something': 0.35; 'but': 0.35; 'should': 0.36; 'received:10': 0.37; 'ends': 0.38; 'mine': 0.38; 'saves': 0.38; 'fact': 0.38; 'back': 0.62; 'times': 0.62; 'such': 0.63; 'provide': 0.64; 'different': 0.65; 'here': 0.66; 'wish': 0.70; 'miss': 0.74; 'misses': 0.84; 'to:addr:yahoo.co.uk': 0.84 X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-MC-Relay: Neutral X-MailChannels-SenderId: wwwh|x-authuser|tim@thechases.com X-MailChannels-Auth-Id: wwwh X-MC-Loop-Signature: 1424355384993:3107678569 X-MC-Ingress-Time: 1424355384993 Date: Thu, 19 Feb 2015 08:17:58 -0600 From: Tim Chase To: Mark Lawrence Subject: Re: 'Lite' Databases (Re: sqlite3 and dates) In-Reply-To: References: <4154cc37-0bb0-4bf2-a52c-b728c737357c@googlegroups.com> <54E517B4.4000409@stoneleaf.us> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-AuthUser: tim@thechases.com Cc: python-list@python.org 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: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1424355395 news.xs4all.nl 2947 [2001:888:2000:d::a6]:47726 X-Complaints-To: abuse@xs4all.nl Path: csiph.com!usenet.pasdenom.info!bete-des-vosges.org!feed.ac-versailles.fr!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Xref: csiph.com comp.lang.python:85903 On 2015-02-19 05:32, Mark Lawrence wrote: > On 19/02/2015 00:08, Mario Figueiredo wrote: > > Parameterized queries is just a pet peeve of mine that I wish to > > include here. SQLite misses it and I miss the fact SQLite misses > > it. The less SQL one needs to write in their code, the happier > > one should be. >=20 > Instead, use the DB-API=E2=80=99s parameter substitution. Put ? as a > placeholder wherever you want to use a value, and then provide a > tuple of values as the second argument to the cursor=E2=80=99s execute() > method. (Other database modules may use a different placeholder, > such as %s or :1.) For example:..." I think Mario was referring to what other back ends call prepared statements. So you do something like =20 sql =3D "..." # parameters are referenced here conn =3D sqlite3.connect(...) stmt =3D conn.prepare(sql) for parameters in list_of_parameters: stmt.execute(*parameters) This saves the SQL processor from recompiling the SQL into internal byte-code every time. It's handy if you know a given query will run multiple times with the same "shape" parameters. It's not essential, and some optimize away the need, but many back-end interfaces support it. -tkc