From: Andrew M. Kuchling Date: Fri, 8 Sep 2006 14:02:45 +0000 (+0000) Subject: Use native SQLite types X-Git-Tag: v2.6a1~2675 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d1839f541d7300f9d6a4041bf0eeb56b7b4394c;p=python Use native SQLite types --- diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index 42527e99e9..2cbbf84484 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -2152,8 +2152,8 @@ c = conn.cursor() # Create table c.execute('''create table stocks -(date timestamp, trans varchar, symbol varchar, - qty decimal, price decimal)''') +(date text, trans text, symbol text, + qty real, price real)''') # Insert a row of data c.execute("""insert into stocks