SQLite是一种关系型数据库管理系统,使用SQL语言进行数据操作。Python内置了一个SQLite模块,可以轻松地在Python中使用SQLite数据库。
python
"""
文件型数据库: 就是一个文件,不需要在电脑安装数据库软件
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()