Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经从我的数据库(sqlite)中检索了一条记录。当我运行以下代码时:
from sql_tools import sqlite sqlite.connect("base.sqlite3") names = sqlite.execute("SELECT * FROM NAMES") print(names) sqlite.disconnect()
它给了我一个对象而不是我的结果。我怎样才能得到我的结果而不是这个对象。有谁能够帮我?
您将需要使用该.get物业。从 version 开始1.0.0,execute 命令返回一个Exec对象而不是结果。这个对象有一些属性&.get是其中之一。此属性将以 np 数组的形式返回结果。
.get
1.0.0
Exec
代码:
names = sqlite.execute("SELECT * FROM NAMES").get