# coding=utf-8"""1.导入模块sqlite32.创建连接 sqlite3.connect()3.创建游标对象4.编写创建表的sql语句5.执行sql6.关闭连接"""import sqlite3 # 创建连接con = sqlite3.connect("E:/sqlite3Demo/demo.db")# 创建游标对象cur = con.cursor()# 创建sql语句sql = ‘‘‘create table t_person( pno INTEGER primary key autoincrement , pname VARCHAR not null , age INTEGER )‘‘‘# 执行sql语句try: cur.execute(sql) print("创建表成功")except Exception as e: print(e) print("创建表失败")finally: # 关闭游标 cur.close() # 关闭连接 con.close() # 这个连接数据库并创建表的方法和传统的JDBC方式较为相似 很容易理解
原文地址:https://www.cnblogs.com/walxt/p/11693203.html
时间: 2024-10-07 18:45:57