summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-09-08 14:02:45 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-09-08 14:02:45 (GMT)
commit3d1839f541d7300f9d6a4041bf0eeb56b7b4394c (patch)
tree0da0765c828aa00bab110784492ea45b0ccba678 /Doc/whatsnew
parent2b464341092829b42849097686998d4d29d783a2 (diff)
downloadcpython-3d1839f541d7300f9d6a4041bf0eeb56b7b4394c.zip
cpython-3d1839f541d7300f9d6a4041bf0eeb56b7b4394c.tar.gz
cpython-3d1839f541d7300f9d6a4041bf0eeb56b7b4394c.tar.bz2
Use native SQLite types
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew25.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex
index 42527e9..2cbbf84 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