diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-09-08 14:03:19 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-09-08 14:03:19 +0000 |
commit | 9cd0036a2bb4de6029f584b1ffa2406809feaf8b (patch) | |
tree | 80ae6c9ff9a05942b44aba45676b0da78cc3e5eb | |
parent | f36dddafc11847043292c2fde9548675b8fe1e5e (diff) | |
download | cpython-git-9cd0036a2bb4de6029f584b1ffa2406809feaf8b.tar.gz |
Use native SQLite types
-rw-r--r-- | Doc/lib/libsqlite3.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libsqlite3.tex b/Doc/lib/libsqlite3.tex index 7517f6b970..a05f5af520 100644 --- a/Doc/lib/libsqlite3.tex +++ b/Doc/lib/libsqlite3.tex @@ -36,8 +36,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 |