gpt4 book ai didi

python - 要创建的数据库文件的名称在哪里指定?

转载 作者:太空宇宙 更新时间:2023-11-03 21:18:53 29 4
gpt4 key购买 nike

来自http://flask.pocoo.org/docs/1.0/tutorial/database/

import sqlite3
import click
from flask import current_app, g
from flask.cli import with_appcontext
def get_db():
if 'db' not in g:
g.db = sqlite3.connect(
current_app.config['DATABASE'],
detect_types=sqlite3.PARSE_DECLTYPES
)
g.db.row_factory = sqlite3.Row
return g.db
def close_db(e=None):
db = g.pop('db', None)
if db is not None:
db.close()

...

def init_db():
db = get_db()
with current_app.open_resource('schema.sql') as f:
db.executescript(f.read().decode('utf8'))
@click.command('init-db')
@with_appcontext
def init_db_command():
"""Clear the existing data and create new tables."""
init_db()
click.echo('Initialized the database.')

...

def init_app(app):
app.teardown_appcontext(close_db)
app.cli.add_command(init_db_command)

...

def create_app():
app = ...
# existing code omitted
from . import db
db.init_app(app)
return app

Run the init-db command:

flask init-db
Initialized the database.

There will now be a flaskr.sqlite file in the instance folder in your project.

令我惊讶的是,flaskr.sqlite 似乎是在没有在任何地方指定的情况下创建的。它是如何指定创建的呢?创建文件flaskr.sqlite时如何将文件名指定给sqlite3?

如果不使用flask直接使用sqlite,如何创建这样一个名为flaskr.sqlite的文件?

谢谢。

最佳答案

请参阅教程的上一页,Application Setup ,其中 app.config.from_mapping() 发生。

关于python - 要创建的数据库文件的名称在哪里指定?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54467178/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com