是否可以在 Lua 代码中从 SQL 中选取数据?
Is it possible to pick data from SQL in a Lua code?
我在 Lua 中使用 Solar2d 进行编码,我想从 SQL table.
中选取数据
所以我想用sqlite3插件,但是不知道怎么用
是的,Solar2D 有 built-in SQLite 库。
查看文档 here。
要选择数据,请使用 SELECT
和 db:nrows(sqlcommand)
我在 Lua 中使用 Solar2d 进行编码,我想从 SQL table.
中选取数据
所以我想用sqlite3插件,但是不知道怎么用
是的,Solar2D 有 built-in SQLite 库。
查看文档 here。
要选择数据,请使用 SELECT
和 db:nrows(sqlcommand)