Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ac198b92
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
ac198b92
编写于
7月 27, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 27, 2023
浏览文件
操作
浏览文件
下载
差异文件
!21424 7.26 资料一致性整改
Merge pull request !21424 from maruiqazqaz/master
上级
fdeda624
76027d75
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
100 addition
and
0 deletion
+100
-0
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
...cation-dev/reference/apis/js-apis-data-relationalStore.md
+100
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
浏览文件 @
ac198b92
...
...
@@ -2397,6 +2397,53 @@ promise.then((rows) => {
})
```
### query<sup>10+</sup>
query(predicates: RdbPredicates, callback: AsyncCallback
<
ResultSet
>
):void
根据指定条件查询数据库中的数据,使用callback异步回调。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| predicates |
[
RdbPredicates
](
#rdbpredicates
)
| 是 | RdbPredicates的实例对象指定的查询条件。 |
| callback | AsyncCallback
<
[ResultSet](#resultset)
>
| 是 | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
**错误码:**
以下错误码的详细介绍请参见
[
关系型数据库错误码
](
../errorcodes/errorcode-data-rdb.md
)
。
|
**错误码ID**
|
**错误信息**
|
| ------------ | ---------------------------- |
| 14800000 | Inner error. |
**示例:**
```
js
let
predicates
=
new
relationalStore
.
RdbPredicates
(
"
EMPLOYEE
"
);
predicates
.
equalTo
(
"
NAME
"
,
"
Rose
"
);
store
.
query
(
predicates
,
function
(
err
,
resultSet
)
{
if
(
err
)
{
console
.
error
(
`Query failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
`ResultSet column names:
${
resultSet
.
columnNames
}
, column count:
${
resultSet
.
columnCount
}
`
);
// resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
while
(
resultSet
.
goToNextRow
())
{
const
id
=
resultSet
.
getLong
(
resultSet
.
getColumnIndex
(
"
ID
"
));
const
name
=
resultSet
.
getString
(
resultSet
.
getColumnIndex
(
"
NAME
"
));
const
age
=
resultSet
.
getLong
(
resultSet
.
getColumnIndex
(
"
AGE
"
));
const
salary
=
resultSet
.
getDouble
(
resultSet
.
getColumnIndex
(
"
SALARY
"
));
console
.
info
(
`id=
${
id
}
, name=
${
name
}
, age=
${
age
}
, salary=
${
salary
}
`
);
}
// 释放数据集的内存
resultSet
.
close
();
})
```
### query
query(predicates: RdbPredicates, columns: Array
<
string
>
, callback: AsyncCallback
<
ResultSet
>
):void
...
...
@@ -2497,6 +2544,59 @@ promise.then((resultSet) => {
})
```
### query<sup>10+</sup>
query(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback
<
ResultSet
>
):void
根据指定条件查询数据库中的数据,使用callback异步回调。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
**模型约束:**
此接口仅可在Stage模型下可用。
**系统接口:**
此接口为系统接口。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| table | string | 是 | 指定的目标表名。 |
| predicates |
[
dataSharePredicates.DataSharePredicates
](
js-apis-data-dataSharePredicates.md#datasharepredicates
)
| 是 | DataSharePredicates的实例对象指定的查询条件。 |
| callback | AsyncCallback
<
[ResultSet](#resultset)
>
| 是 | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
**错误码:**
以下错误码的详细介绍请参见
[
关系型数据库错误码
](
../errorcodes/errorcode-data-rdb.md
)
。
|
**错误码ID**
|
**错误信息**
|
| ------------ | ---------------------------- |
| 14800000 | Inner error. |
**示例:**
```
js
import
dataSharePredicates
from
'
@ohos.data.dataSharePredicates
'
let
predicates
=
new
dataSharePredicates
.
DataSharePredicates
();
predicates
.
equalTo
(
"
NAME
"
,
"
Rose
"
);
store
.
query
(
"
EMPLOYEE
"
,
predicates
,
function
(
err
,
resultSet
)
{
if
(
err
)
{
console
.
error
(
`Query failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
`ResultSet column names:
${
resultSet
.
columnNames
}
, column count:
${
resultSet
.
columnCount
}
`
);
// resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
while
(
resultSet
.
goToNextRow
())
{
const
id
=
resultSet
.
getLong
(
resultSet
.
getColumnIndex
(
"
ID
"
));
const
name
=
resultSet
.
getString
(
resultSet
.
getColumnIndex
(
"
NAME
"
));
const
age
=
resultSet
.
getLong
(
resultSet
.
getColumnIndex
(
"
AGE
"
));
const
salary
=
resultSet
.
getDouble
(
resultSet
.
getColumnIndex
(
"
SALARY
"
));
console
.
info
(
`id=
${
id
}
, name=
${
name
}
, age=
${
age
}
, salary=
${
salary
}
`
);
}
// 释放数据集的内存
resultSet
.
close
();
})
```
### query
query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array
<
string
>
, callback: AsyncCallback
<
ResultSet
>
):void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录