Python SQLite 基本操作和经验技巧(二)
1.sqlite3模块删除整个数据表 test1.db是整个数据库文件,而不是一个表,它可以包括多个表 import os os.unlink("test1.db") 用上面的代码删除test1.db文件 如要删除单个表people: con.execute('drop table people') 2.用python统计数据库sqlite中某一table中的记录行数 conn.execute('''CREATE TABLE IF NOT EXISTS ADDRESSDB(MacAddress CHAR(50),NewAddress CHAR(50) );''') cur
用户评论