您能告诉我如何为使用Python脚本创建的SQLite3数据库添加用户名和密码(身份验证)吗?
我已经发现这是SQLite文档
int sqlite3_user_authenticate(
sqlite3 *db, /* The database connection */
const char *zUsername, /* Username */
const char *aPW, /* Password or credentials */
int nPW /* Number of bytes in aPW[] */
);
但无法弄清楚如何将它与我的Python代码一起使用
import sqlite3
conn = sqlite3.connect("E:\\Dev\Db\MyBooks.sqlite")
cursor = conn.cursor()
# create a table
cursor.execute("""CREATE TABLE albums
(title text, artist text, release_date text,
publisher text, media_type text)
""")