Flask チュートリアルに従って、Win 7、Python 2.7.3、virtualenv を実行しています。ステップ 3: データベースの作成http://flask.pocoo.org/docs/tutorial/dbinit/#tutorial-dbinitで行き詰まっています。
このようなスキーマは、次のように schema.sql ファイルを sqlite3 コマンドにパイプすることで作成できます。
sqlite3 /tmp/flaskr.db < schema.sql
CMD < venv > が返すため、このコマンドを実行する方法:
「sqlite3」は、内部または外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されません。
この手順は必要ですか?
フォルダー Project、2 つのファイル schema.sql およびflaskr.py。
スキーマ.sql
drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title string not null,
text string not null
);
フラスコ.py
# all the imports
import sqlite3
from flask import Flask, request, session, g, redirect, url_for, \
abort, render_template, flash
from contextlib import closing
# configuration
DATABASE = '/tmp/flaskr.db'
DEBUG = True
SECRET_KEY = 'development key'
USERNAME = 'admin'
PASSWORD = 'default'
# create our little application :)
app = Flask(__name__)
app.config.from_object(__name__)
app.config.from_envvar('FLASKR_SETTINGS', silent=True)
def connect_db():
return sqlite3.connect(app.config['DATABASE'])
def init_db():
with closing(connect_db()) as db:
with app.open_resource('schema.sql') as f:
db.cursor().executescript(f.read())
db.commit()
if __name__ == '__main__':
app.run()
< venv > python
>>> from flaskr import init_db
>>> init_db()
Trackeback <most recent call last>:
File "<stdin>", line 1, in <module>
File "flaskr.py", line 24, in init_db
with closing (connect_db()) as db:
File "flaskr.py", line 21, in connect_db
return sqlite3.connect(app.config['DATABASE'])
sqlite3.OperationalError: unable to open database.