Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!xlned.com!feeder3.xlned.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; ';-)': 0.03; 'cursor': 0.09; 'parameter': 0.09; 'subject:extra': 0.09; '-tkc': 0.16; 'command.': 0.16; 'did.': 0.16; 'skip:d 60': 0.16; 'subject:variable': 0.16; 'tim,': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'example': 0.22; 'import': 0.22; 'specify': 0.24; '15,': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'tim': 0.29; 'dec': 0.30; 'important.': 0.30; 'message-id:@mail.gmail.com': 0.30; 'url:mailman': 0.30; 'code': 0.31; 'chase': 0.31; 'omitted': 0.31; 'url:python': 0.33; 'beginning': 0.33; 'received:google.com': 0.35; 'really': 0.36; 'url:listinfo': 0.36; 'url:org': 0.36; 'thank': 0.38; 'url:library': 0.38; 'to:addr :python-list': 0.38; 'subject:" ': 0.39; 'to:addr:python.org': 0.39; 'url:mail': 0.40; 'you.': 0.62; '4:29': 0.84; 'crucial': 0.91; '2013': 0.98 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:to :content-type; bh=N8j4N5LnPW22okwJu5iwGN/DC2h+6bSx3B1IiDuRTEQ=; b=L6vIa8c8zosvgV+j59xcnN3OIG5IKiR43lPVvq9pL4QecydccSiqLi/J0vXiXZf8ns Wpno4erkr/7G4TwxNsB+LmsAX2VE2HIWSrF2vRxKWqCeZlx8SHC4AElpVwN4asTl01JU 2ih7OoUpa5r2WR7N1RY3HxgVJHIxMWyImajly8J6VCHgRTw4BQMRGzo+ZDKCdotGU2z8 HFKP8MdU2Fyn0Q4wxsDBmnkcc7UbJGbplzpVM/w8QmHBwtOSpOPFX4waUqa2kme3uDZg bKHRwifYdZiydaZSPbe75JsrUHjz+6rpAqA3Ia3XzxtfChT7BpLLVELxWhORSCSUwieF 99SA== MIME-Version: 1.0 X-Received: by 10.220.79.199 with SMTP id q7mr929361vck.38.1387147578941; Sun, 15 Dec 2013 14:46:18 -0800 (PST) In-Reply-To: <20131215062923.184bf636@bigbox.christie.dr> References: <52A25D94.9040404@islandtraining.com> <20131208125823.241112db@bigbox.christie.dr> <20131208161858.1365f2d7@bigbox.christie.dr> <20131215061720.2fbb394d@bigbox.christie.dr> <20131215062923.184bf636@bigbox.christie.dr> Date: Sun, 15 Dec 2013 14:46:18 -0800 Subject: Re: Eliminate "extra" variable From: Igor Korot To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387147588 news.xs4all.nl 2864 [2001:888:2000:d::a6]:38457 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61970 Tim, On Sun, Dec 15, 2013 at 4:29 AM, Tim Chase wrote: > On 2013-12-15 06:17, Tim Chase wrote: >>>>>>> conn = sqlite3.connect('x.sqlite', >>>>... detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES) >> >> Your example code omitted this one crucial line. Do you specify the >> detect_types parameter to connect()? Yes, I did. This is the beginning of the session: >>> import sqlite3 >>> conn = sqlite3.connect('c:\Documents and Settings\Igor.FORDANWORK\Desktop\mydb.db', detect_types = sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES) Also please note that you session was missing the cursor creation command. ;-) Thank you. > > It's really the PARSE_DECLTYPES that is important. > > http://docs.python.org/2/library/sqlite3.html#sqlite3.PARSE_DECLTYPES > > -tkc > > > -- > https://mail.python.org/mailman/listinfo/python-list