例子 使用sqlite3 数据库建立数据方式
摘要:
#!/usr/bin/env python#coding:utf-8import sqlite3#建立一个数据库cx = sqlite3.connect("E:/test.db")#建表 必须使用游标方式才能建表cu=cx.cursor()try: cu.execute("create table 阅读全文
posted @ 2017-01-11 20:39 chenxiaoyong 阅读(568) 评论(0) 推荐(0) 编辑