【问题标题】:OperationalError: no such table: entriesOperationalError:没有这样的表:条目
【发布时间】:2014-07-21 04:22:03
【问题描述】:

我正在学习烧瓶框架并关注烧瓶tutorial。我已逐行遵循本教程的每一步。最后我收到错误“sqlite3.OperationalError OperationalError: no such table: entries”。我在linux机器上,以前从未使用过sqlite。我不知道如何解决这个问题。 flaskr.py 的代码在下面

# all the imports
import os
import sqlite3
from flask import Flask, request, session, g, redirect, url_for, abort, render_template, flash



# create our little application :)
app = Flask(__name__)
app.config.from_object(__name__)
# Load default config and override config from an environment variable
app.config.update(dict(
DATABASE=os.path.join(app.root_path, 'flaskr.db'),
DEBUG=True,
SECRET_KEY='development key',
USERNAME='admin',
PASSWORD='default'
))
app.config.from_envvar('FLASKR_SETTINGS', silent=True)


def connect_db():
# """Connects to the specific database."""
    rv = sqlite3.connect(app.config['DATABASE'])
    rv.row_factory = sqlite3.Row
    return rv

def init_db():
    with app.app_context():
        db = get_db()
    with app.open_resource('schema.sql', mode='r') as f:
        db.cursor().executescript(f.read())
        db.commit()


def get_db():
#"""Opens a new database connection if there is none yet for the current application context."""
    if not hasattr(g, 'sqlite_db'):
        g.sqlite_db = connect_db()
        return g.sqlite_db


@app.teardown_appcontext
def close_db(error):
#"""Closes the database again at the end of the request."""
    if hasattr(g, 'sqlite_db'):
        g.sqlite_db.close()



@app.route('/')
def show_entries():
    db = get_db()
    cur = db.execute('select title, text from entries order by id desc')
    entries = cur.fetchall()
    return render_template('show_entries.html', entries=entries)



@app.route('/add', methods=['POST'])
def add_entry():
    if not session.get('logged_in'):
        abort(401)
        db = get_db()
        db.execute('insert into entries (title, text) values (?, ?)',
        [request.form['title'], request.form['text']])
        db.commit()
        flash('New entry was successfully posted')
    return redirect(url_for('show_entries'))



@app.route('/login', methods=['GET', 'POST'])
def login():
    error = None
    if request.method == 'POST':
        if request.form['username'] != app.config['USERNAME']:
            error = 'Invalid username'
        elif request.form['password'] != app.config['PASSWORD']:
            error = 'Invalid password'
        else:
            session['logged_in'] = True
            flash('You were logged in')
        return redirect(url_for('show_entries'))
    return render_template('login.html', error=error)


@app.route('/logout')
def logout():
    session.pop('logged_in', None)
    flash('You were logged out')
    return redirect(url_for('show_entries'))



if __name__ == '__main__':
    app.run()

【问题讨论】:

  • 你能告诉我们你的代码吗?您确定您关注了step 4 并且数据库文件已正确加载?
  • 我注意到该页面的底部(第 4 步)有一个关于故障排除的特定部分:如果您稍后遇到无法找到表的异常
  • 看起来是正确的。所以你的项目根目录中有一个flaskr.db 文件?您是否按照步骤 4 中的详细说明从交互式提示中调用了 init_db() 函数?
  • 只要确保 ~entries~ 表是在 sql 中创建的。打开 sql 控制台并输入show tables;。这将显示在 SQL 中创建的表的列表
  • 我现在查看了 flaskr.db 文件。它是空的。我应该在第一行输入 init_db() 吗?

标签: python sqlite flask


【解决方案1】:

我发现了问题。我需要在执行代码之前先创建表。所以我只是打开了 python shell 并输入了以下命令。该函数在我的数据库中创建了所需的表。

 from flaskr import init_db
 init_db()

【讨论】:

  • 这对我不起作用。我遵循相同的教程,但在 Pycharm 中构建所有内容。
【解决方案2】:

只是简单地做

from flaskr import init_db
init_db()

将抛出 RuntimeError: Working outside of application context。

你可以做的是,在你的 flaskr.py 中添加

with app.app_context():
      init_db()

然后运行flaskr.py。现在当你执行

export FLASK_APP=flaskr.py
export FLASK_DEBUG=1
flask run

一切都会顺利进行!

【讨论】:

  • 这对我有用,上面的解决方案没有。我把你建议的代码放在上面 if name == "main": app.run()
猜你喜欢
  • 2017-02-19
  • 1970-01-01
  • 2015-07-30
  • 2016-02-20
  • 1970-01-01
  • 2012-01-15
  • 2015-07-22
  • 2015-04-20
  • 2021-04-10
相关资源
最近更新 更多