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.
TxAdmin 日志
服务器.lua 文件
我已经尝试更改数字,但我认为数据库中有问题
您试图result在 server.lua 的第 170 行索引一个 nil 值。
result
result在nil这个范围内你不能这样做result[0]。
nil
result[0]
要么找出原因result并nil修复它,要么避免索引它,如果它是。
您的代码表明您未能将 SQL 查询的返回值分配给变量。
所以试试
local result = MySQL.Asynch.fetchAll("...
您仍然应该使用条件语句或断言检查您的查询是否实际返回了结果。