创建表importsqlite3# 连接文件数据库(不存在则自动创建)conn=sqlite3.connect("my_database.db")cursor=conn.cursor()# 创建表cursor.execute(""" create table if not exists users ( id integer primary key autoincrement, username text not null, age integer ) """)# 插入数据cursor.execute("insert into users(username, age) values("bob", 25)")conn.commit()# 查询数据cursor.execute("select * from users")print(cursor.fetchall())# 输出: [(1, 'bob', 25)]conn.close()-----------------------------------------------------------------------------------删除表中数据importsqlite3 DB_FILE="C:/inoutsave.db"# 连接到SQLite数据库conn=sqlite3.connect(DB_FILE)try:# 创建一个游标对象cursor=conn.cursor()# 执行DELETE语句清除表数据cursor.execute("DELETE FROM io_record")# 提交事务conn.commit()exceptsqlite3.Errorase:print(f"An error occurred:{e}")# 如果发生错误,则回滚事务conn.rollback()finally:# 关闭数据库连接conn.close()sqlite3简单操作
张小明
前端开发工程师
HsMod炉石插件:新手也能轻松掌握的32倍速游戏加速神器
HsMod炉石插件:新手也能轻松掌握的32倍速游戏加速神器 【免费下载链接】HsMod Hearthstone Modify Based on BepInEx 项目地址: https://gitcode.com/GitHub_Trending/hs/HsMod 想要告别炉石传说中漫长的等待时间吗?HsMod插件为你打开了一扇通往高…
快速掌握FastANI:微生物基因组分析终极指南
快速掌握FastANI:微生物基因组分析终极指南 【免费下载链接】FastANI Fast Whole-Genome Similarity (ANI) Estimation 项目地址: https://gitcode.com/gh_mirrors/fa/FastANI 项目概览 FastANI是一款革命性的基因组比较工具,专为快速计算全基因…
VueTorrent终极评测:重新定义qBittorrent WebUI体验
VueTorrent终极评测:重新定义qBittorrent WebUI体验 【免费下载链接】VueTorrent The sleekest looking WEBUI for qBittorrent made with Vuejs! 项目地址: https://gitcode.com/gh_mirrors/vu/VueTorrent 作为qBittorrent最现代化的Web用户界面解决方案&am…
FunClip:基于AI的智能视频剪辑工具终极指南
FunClip:基于AI的智能视频剪辑工具终极指南 【免费下载链接】FunClip Open-source, accurate and easy-to-use video clipping tool, LLM based AI clipping intergrated || 开源、精准、方便的视频切片工具,集成了大语言模型AI智能剪辑功能 项目地址:…
智能音箱本地音乐播放无响应?一文学会完整排查修复方法
智能音箱本地音乐播放无响应?一文学会完整排查修复方法 【免费下载链接】xiaomusic 使用小爱同学播放音乐,音乐使用 yt-dlp 下载。 项目地址: https://gitcode.com/GitHub_Trending/xia/xiaomusic 智能音箱本地音乐播放故障排查是许多用户在使用过…
AntiMicroX:专业级游戏手柄映射解决方案的技术解析与实践指南
AntiMicroX:专业级游戏手柄映射解决方案的技术解析与实践指南 【免费下载链接】antimicrox Graphical program used to map keyboard buttons and mouse controls to a gamepad. Useful for playing games with no gamepad support. 项目地址: https://gitcode.co…