Path: csiph.com!usenet.pasdenom.info!news.franciliens.net!fdn.fr!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed1a.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'interfaces': 0.04; 'insert': 0.05; "subject:' ": 0.07; 'back-end': 0.09; 'feature,': 0.09; 'lawrence': 0.09; 'statistical': 0.09; 'cc:addr:python- list': 0.11; '-tkc': 0.16; 'essential,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'once;': 0.16; 'personally,': 0.16; 'query,': 0.16; 'statements,': 0.16; 'subject:dates': 0.16; 'subject:sqlite3': 0.16; 'wrote:': 0.18; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'processor': 0.24; 'cc:2**0': 0.24; "i've": 0.25; 'query': 0.26; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'another.': 0.31; 'parameters.': 0.31; 'update.': 0.31; 'run': 0.32; 'url:python': 0.33; 'fri,': 0.33; 'could': 0.34; 'subject: (': 0.35; "can't": 0.35; 'common': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'shows': 0.36; 'useful': 0.36; 'url:org': 0.36; 'server': 0.38; 'saves': 0.38; 'url:library': 0.38; 'anything': 0.39; 'url:3': 0.61; 'times': 0.62; 'information': 0.63; 'different': 0.65; '20,': 0.68; 'useful.': 0.68; 'bulk': 0.74; 'repeat': 0.74; '2015': 0.84; 'to:none': 0.92; 'imagine': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=m4uGFT3204E1WHyaFcfkqe0kTN73uvg70NVdEjzieik=; b=dmIBBHSaeN92i7hD67qbi/ZfLrEYii9NtJChRvBENHO0IFd0dYl8/qKbpSEkStESTJ Ft8KGx1654Bgw89FgvtJDENZJdd6/WB0oSdPqnDAriXLawZg33qACUicSH6ziGKOX4S8 GXq63pbvdpTaQmiHsSnTGXuFr3Hie3CweWyvfzUfOyVXxo+MfOvqeqygRetTZ8txKYn8 Cu0zzHGTVqPtpdzdWLaAe+AuZ5rwcYkAZb/xHuaDuPf0A8VvjCa+rmFS/KpIObBe986l YhD2dGf9gtgJnjJVEAXTdrDkLYdH2uMis/vrOUMGtF5ivM/BNRiJ3CxyY0pHdm9dtqLt 5p9A== MIME-Version: 1.0 X-Received: by 10.107.33.11 with SMTP id h11mr6704688ioh.53.1424359158540; Thu, 19 Feb 2015 07:19:18 -0800 (PST) In-Reply-To: References: <4154cc37-0bb0-4bf2-a52c-b728c737357c@googlegroups.com> <54E517B4.4000409@stoneleaf.us> <20150219081758.3dbe83ca@bigbox.christie.dr> Date: Fri, 20 Feb 2015 02:19:18 +1100 Subject: Re: 'Lite' Databases (Re: sqlite3 and dates) From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1424359161 news.xs4all.nl 2832 [2001:888:2000:d::a6]:43441 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85907 On Fri, Feb 20, 2015 at 2:04 AM, Mark Lawrence wrote: >> 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 >> > > Is this > https://docs.python.org/3/library/sqlite3.html#sqlite3.Cursor.executemany an > equivalent? That's a different feature, and also useful. Personally, I've never used executemany() for anything other than INSERT statements, though I can imagine using it equally for UPDATE. It's useful only when you have a bulk lot to do all at once; you can't take advantage of it to repeat a common and complex query. Imagine you run a web server that shows some statistical information about your session, on every page; this may require a complex query, which you could retain from one page request to another. But that only matters to performance. ChrisA