1 Star 0 Fork 0

周一恒/python_ioc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
connect_db.py 452 Bytes
一键复制 编辑 原始数据 按行查看 历史
周一恒 提交于 2024-05-22 10:01 . add file
#!/usr/bin/python
import sqlite3
def get_data(file_nam: str = 'areaMonitor.db', length: int = 1):
conn = sqlite3.connect(file_nam)
c = conn.cursor()
# cursor = c.execute(
# "SELECT sql FROM sqlite_master WHERE type = 'table' AND tbl_name = 'realData';")
cursor = c.execute(
"SELECT deviceId,data from realData ORDER BY id DESC LIMIT {};".format(length))
data = cursor.fetchall()
conn.close()
return data
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zyh-j/python_ioc.git
git@gitee.com:zyh-j/python_ioc.git
zyh-j
python_ioc
python_ioc
master

搜索帮助