函数:cloud_db_query 查询数据
方法名称:查询数据
方法功能:查询数据
调用方法
ok,ret = ts_enterprise_lib:cloud_db_query(table_id,where,timeout_seconds);
参数 | 类型 | 必填 | 说明 | 默认值 |
---|---|---|---|---|
table_id | string | 是 | 云数据库表 ID, 点击云数据库中表后方的复制 ID 按钮即可复制粘贴 |
- |
where | table | 是 | 查询条件,格式为键值对, 对应列名和数据可写多个条件 条件写法参考脚本示例 |
- |
timeout_seconds | number | 否 | 超时时间,单位秒。数据较大时,应适当延长 | 5 |
返回值 | 类型 | 说明 |
---|---|---|
ok | boolean | 操作结果,成功返回 true,失败返回 false |
err | string | 当 ok 等于 true,返回用户查询的实际结果 当 ok 等于 false,返回错误原因 |
函数用例 1:普通查询
--企业版库为旗舰版及企业版专用库请勿在除旗舰版及企业版外的产品使用,此库已内置,无需下载
--如果提示没有 ts_enterprise_lib 库请重启旗舰版/企业版客户端服务再试
ts_enterprise_lib = require("ts_enterprise_lib")
assert(ts_enterprise_lib,"无法引入企业专用库")
--查询数据
local table_id = '58b7968986d4e24f4a0cf4e5' --表 ID
local where = {a=5 } --条件
local timeout_seconds = 30 --超时
local ok,ret = ts_enterprise_lib:cloud_db_query(table_id,where,timeout_seconds)
if ok then
dialog("成功:"..ts_enterprise_lib.json.encode(ret))
else
dialog(ret)
end
函数用例 2:分页查询
--引入中控库
--企业版库为旗舰版及企业版专用库请勿在除旗舰版及企业版外的产品使用,此库已内置,无需下载
ts_enterprise_lib = require("ts_enterprise_lib")
assert(ts_enterprise_lib,"无法引入企业专用库")
--分页查询数据
local table_id = '58b7968986d4e24f4a0cf4e5' --表 ID
local where = {a=5 } --条件
local option = {pageSize=1,pageIndex=0} --pageSize 分页大小(<1000,default:50),pageIndex分页序号(default:0),
local timeout_seconds = 30 --超时时间
local ok,ret = ts_enterprise_lib:cloud_db_query(table_id,where,option,timeout_seconds)
if ok then
dialog("成功:"..ts_enterprise_lib.json.encode(ret))
else
dialog(ret)
end
函数用例 3:排序查询
--引入中控库
--企业版库为旗舰版及企业版专用库请勿在除旗舰版及企业版外的产品使用,此库已内置,无需下载
ts_enterprise_lib = require("ts_enterprise_lib")
assert(ts_enterprise_lib,"无法引入企业专用库")
--排序查询数据
local table_id = '58b7968986d4e24f4a0cf4e5' --表 ID
local where = {} --条件
local option = {
sort={
a=-1 -- -1:从大到小、1:从小到大
}
}
local timeout_seconds = 30 --超时时间
local ok,ret = ts_enterprise_lib:cloud_db_query(table_id,where,option,timeout_seconds)
if ok then
dialog("成功:"..ts_enterprise_lib.json.encode(ret))
else
dialog(ret)
end
函数用例 4:模糊条件查询
--引入中控库
--企业版库为旗舰版及企业版专用库请勿在除旗舰版及企业版外的产品使用,此库已内置,无需下载
ts_enterprise_lib = require("ts_enterprise_lib")
assert(ts_enterprise_lib,"无法引入企业专用库")
--表id
local table_id = '58a522d7f502b1263083b74b'
local where = {a={lt=2},b={lte=1},c={gt=1},d={gte=1},e={ne=1},f={regex = "b", type="first" } }--条件
--说明
--小于:lt,小于或等于:lte,大于:gt,大于或等于:gte,不等于:ne
--模糊: regex="b" type="first" 开头匹配 type="all" 任意匹配
local timeout_seconds = 30 --超时时间
local ok,ret = ts_enterprise_lib:cloud_db_query(table_id,where,timeout_seconds)
if ok then
dialog("成功:"..ts_enterprise_lib.json.encode(ret))
else
dialog(ret)
end
注意事项
- 如果 err 返回 timeout 请增加 timeout_seconds 的时间,非 mSleep 时间。