blob: 540d5d00b1911ae5371b8a6eebbdf04b8047852e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---@meta
resty_mysql={}
function resty_mysql.read_result() end
function resty_mysql.new(self) end
function resty_mysql.connect(self, opts) end
function resty_mysql.server_ver(self) end
function resty_mysql.send_query() end
function resty_mysql.set_keepalive(self, ...) end
function resty_mysql.set_compact_arrays(self, value) end
function resty_mysql.query(self, query, est_nrows) end
function resty_mysql.set_timeout(self, timeout) end
function resty_mysql.close(self) end
resty_mysql._VERSION="0.21"
function resty_mysql.get_reused_times(self) end
return resty_mysql
|