You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local M = {}
|
|
|
|
local mysqldbx = require "dbproxy.mysqldbx"
|
|
|
|
|
|
function M.loaduser(id)
|
|
local sql = string.format("select * from `sg_user` where id = %d", id)
|
|
return mysqldbx.query(sql)
|
|
end
|
|
|
|
return M
|