完全自已查资料写的,年龄大了,记性差了,都放在网上吧!喜欢的随手点个赞,谢谢!
import streamlit as st
import sqlite3
from sqlite3 import Connection
from contextlib import closing
URI_SQLITE_DB = "dbrag.db"
def main():
st.title("混沌知识库")
conn = get_connection(URI_SQLITE_DB)
init_db_workarea(conn)
init_db_worklist(conn)
build_sidebar(conn)
#查询数据库中的表名
def get_tables():
with get_connection() as conn:
return [table for table in conn.execute(
"SELECT name FROM sqlite_master WHERE type='table'"
).fetchall()]
#执行sql操作
def insert_workarea(conn: Connection,workareaname):
conn.

最低0.47元/天 解锁文章
1044

被折叠的 条评论
为什么被折叠?



