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.
我正在使用 LuaSQL,并使用con:execute(sql_stmt)返回游标的结果集查询。
con:execute(sql_stmt)
我如何查看该结果集中是否至少有一行,而无需cursor:fetch弹出第一行?
cursor:fetch
从文档看来,如果您使用的是 MySQL、PostgreSQL 或 Oracle,您可以使用 cur:numrows():
cur:numrows() 另见:游标对象 返回:查询结果中的行数。