Guest User

Untitled

a guest
Jun 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import sqlite3 as sql
  2.  
  3. dbpath="H:\Data\yieldcurve.db"
  4. conn=sql.connect(dbpath)
  5.  
  6. cur=conn.cursor()
  7. name='FFRate'
  8. cur.execute("CREATE TABLE IF NOT EXISTS %s" % name)
  9. conn.commit()
  10. cur=conn.cursor()
Add Comment
Please, Sign In to add comment