您的位置:首页 > 游戏 > 游戏 > sqlite3 在Python中使用

sqlite3 在Python中使用

2024/10/6 10:31:47 来源:https://blog.csdn.net/zhangzhaoyuxunlei/article/details/141471153  浏览:    关键词:sqlite3 在Python中使用

 

SQLite是一种关系型数据库管理系统,使用SQL语言进行数据操作。Python内置了一个SQLite模块,可以轻松地在Python中使用SQLite数据库。

 

 

"""
文件型数据库: 就是一个文件,不需要在电脑安装数据库软件
python3 内置了sqlite3  可以管理sqlite数据库
"""import sqlite3
con = sqlite3.connect("python2407.abc")
cur = con.cursor()# cur.execute("SELECT name FROM sqlite_master WHERE type='table';")
# print(cur.fetchall())# cur.execute("""
# CREATE TABLE users (
#     id INTEGER PRIMARY KEY AUTOINCREMENT,
#     username TEXT NOT NULL UNIQUE,
#     password TEXT NOT NULL
# );
# """)# cur.execute("PRAGMA table_info(users);")
# print(cur.fetchall())# cur.executemany("INSERT INTO users (username, password) VALUES (?, ?);", [
#     ('user3', 'password'),
#     ('user4', 'password'),
#     ('user5', 'password'),
#     ('user6', 'password'),
#     ('user7', 'password'),
# ])
#
# con.commit()cur.execute("SELECT * FROM users;")
print(cur.fetchall())cur.close()
con.close()

 

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com