2 Star 0 Fork 1

行云流水/discover-flask

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sql.py 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
Michael Herman 提交于 2014-06-18 09:28 . flask-sqlalchemy
# sql.py - Create a SQLite3 table and populate it with data
import sqlite3
# create a new database if the database doesn't already exist
with sqlite3.connect('sample.db') as connection:
# get a cursor object used to execute SQL commands
c = connection.cursor()
# create the table
c.execute('CREATE TABLE posts(title TEXT, description TEXT)')
# insert dummy data into the table
c.execute('INSERT INTO posts VALUES("Good", "I\'m good.")')
c.execute('INSERT INTO posts VALUES("Well", "I\'m well.")')
c.execute('INSERT INTO posts VALUES("Excellent", "I\'m excellent.")')
c.execute('INSERT INTO posts VALUES("Okay", "I\'m okay.")')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/1qaz_zhouqi/discover-flask.git
git@gitee.com:1qaz_zhouqi/discover-flask.git
1qaz_zhouqi
discover-flask
discover-flask
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385