如何将sqlite3数据库的名称设置为python变量?[已关闭]

lfapxunr  于 2023-08-06  发布在  SQLite
关注(0)|答案(1)|浏览(115)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答这个问题。
28天前关闭。
Improve this question
我试图将sqlite3数据库的名称设置为用户输入,但似乎无法将数据库的名称设置为变量。
我试图在SQL表创建结束时设置变量,但没有成功。

yhxst69z

yhxst69z1#

这样做应该没有任何问题。这是使用用户输入作为SQLite数据库的名称/路径的最简单方法:

import sqlite3
database_name = input("Enter the name of the database: ")
connection = sqlite3.connect(database_name)

字符串

相关问题