Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
468bd3b4
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,发现更多精彩内容 >>
提交
468bd3b4
编写于
6月 02, 2022
作者:
S
songruirui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
datashareapi文档修改
Signed-off-by:
N
songruirui
<
songruirui1@huawei.com
>
上级
7aa2816d
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
1067 addition
and
861 deletion
+1067
-861
zh-cn/application-dev/reference/apis/js-apis-application-DataShareExtensionAbility.md
...nce/apis/js-apis-application-DataShareExtensionAbility.md
+256
-193
zh-cn/application-dev/reference/apis/js-apis-data-DataSharePredicates.md
...on-dev/reference/apis/js-apis-data-DataSharePredicates.md
+249
-214
zh-cn/application-dev/reference/apis/js-apis-data-DataShareResultSet.md
...ion-dev/reference/apis/js-apis-data-DataShareResultSet.md
+160
-116
zh-cn/application-dev/reference/apis/js-apis-data-ValuesBucket.md
...plication-dev/reference/apis/js-apis-data-ValuesBucket.md
+17
-15
zh-cn/application-dev/reference/apis/js-apis-data-dataShare.md
.../application-dev/reference/apis/js-apis-data-dataShare.md
+385
-323
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-application-DataShareExtensionAbility.md
浏览文件 @
468bd3b4
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-data-DataSharePredicates.md
浏览文件 @
468bd3b4
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-data-DataShareResultSet.md
浏览文件 @
468bd3b4
# DataShare
结果集
# DataShare
ResultSet
**DataShare结果集(DataShareResultSet)**
**结果集(DataShareResultSet)**
是为了提供通过查询数据库生成的结果集的访问方法,可以根据提供的行数,查询相应的值,也可以查询指定数据类型的值。
提供通过查询数据库生成的数据库结果集的访问方法。
>**说明:**
>**说明:**
>
>本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
## 导入模块
## 导入模块
```
j
s
```
t
s
import
DataShareResultSet
from
'
./
@ohos.data.DataShareResultSet
'
;
import
DataShareResultSet
from
'
@ohos.data.DataShareResultSet
'
;
```
```
## 使用说明
## 使用说明
需要通过
dataShare.query(
)获取DataShareResultSet对象。
需要通过
[
dataShare.query()
](
js-apis-data-dataShare.md#query
)
获取DataShareResultSet对象。
```
j
s
```
t
s
import
dataShare
from
'
@ohos.data.dataShare
'
;
import
dataShare
from
'
@ohos.data.dataShare
'
;
import
DataSharePredicates
from
'
./@ohos.data.DataSharePredicates
'
;
query
()
let
dataShareHelper
;
let
uri
=
(
"
datashare:///com.samples.datasharetest.DataShare
"
);
await
dataShare
.
createDataShareHelper
(
this
.
context
,
uri
,
(
err
,
data
)
=>
{
if
(
err
!=
undefined
)
{
console
.
info
(
"
createDataShareHelper fail, error message :
"
+
err
);
}
else
{
console
.
info
(
"
createDataShareHelper end, data :
"
+
data
);
dataShareHelper
=
data
;
}
});
let
columns
=
[
"
*
"
]
;
let
da
=
new
dataShare
.
DataSharePredicates
();
let
resultSet
;
da
.
equalTo
(
"
name
"
,
"
ZhangSan
"
);
dataShareHelper
.
query
(
uri
,
da
,
columns
).
then
((
data
)
=>
{
console
.
log
(
"
query end, data :
"
+
data
);
resultSet
=
data
;
}).
catch
((
err
)
=>
{
console
.
log
(
"
query fail, error message :
"
+
err
);
});
```
```
## 属性
## 属性
| 名称 | 参数类型
| 必填 | 说明
|
| 名称 | 参数类型
| 必填 | 说明
|
| ----------- | -------------
-- | ---- | --
------------------------ |
| ----------- | -------------
| ---- |
------------------------ |
| columnNames | Array
<
*string*
>
| 是 | 获取结果集中所有列的名称。
|
| columnNames | Array
<
string>
| 是 | 结果集中所有列的名称。
|
| columnCount |
*number*
| 是 | 获取结果集中的列数。
|
| columnCount |
number | 是 | 结果集中的列数。
|
| rowCount |
*number*
| 是 | 获取结果集中的行数。
|
| rowCount |
number | 是 | 结果集中的行数。
|
| isClosed |
*boolean*
| 是 | 检查当前结果集是否关闭。
|
| isClosed |
boolean | 是 | 标志当前结果集是否关闭。
|
## goToFirstRow
## goToFirstRow
goToFirstRow():
*boolean*
;
goToFirstRow():
boolean
;
转到结果集的第一行。
该接口用于
转到结果集的第一行。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| :------
--
| --------------------------------------------- |
| :------ | --------------------------------------------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
isGoTOFirstRow
=
resultSet
.
goToFirstRow
();
let
isGoTOFirstRow
=
resultSet
.
goToFirstRow
();
console
.
info
(
'
resultSet.goToFirstRow:
'
+
isGoTOFirstRow
);
console
.
info
(
'
resultSet.goToFirstRow:
'
+
isGoTOFirstRow
);
```
```
## goToLastRow
## goToLastRow
goToLastRow():
*boolean*
;
goToLastRow():
boolean
;
转到结果集的最后一行。
该接口用于
转到结果集的最后一行。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
...
@@ -67,32 +87,36 @@ goToLastRow(): *boolean*;
...
@@ -67,32 +87,36 @@ goToLastRow(): *boolean*;
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
isGoToLastRow
=
resultSet
.
goToLastRow
();
let
isGoToLastRow
=
resultSet
.
goToLastRow
();
console
.
info
(
'
resultSet.goToLastRow:
'
+
isGoToLastRow
);
console
.
info
(
'
resultSet.goToLastRow:
'
+
isGoToLastRow
);
```
```
## goToNextRow
## goToNextRow
goToNextRow():
*boolean*
;
goToNextRow():
boolean
;
转到结果集的下一行。
该接口用于
转到结果集的下一行。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| -------
--
| --------------------------------------------- |
| ------- | --------------------------------------------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
isGoToNextRow
=
resultSet
.
goToNextRow
();
let
isGoToNextRow
=
resultSet
.
goToNextRow
();
console
.
info
(
'
resultSet.goToNextRow:
'
+
isGoToNextRow
);
console
.
info
(
'
resultSet.goToNextRow:
'
+
isGoToNextRow
);
```
```
...
@@ -101,19 +125,21 @@ console.info('resultSet.goToNextRow: ' + isGoToNextRow);
...
@@ -101,19 +125,21 @@ console.info('resultSet.goToNextRow: ' + isGoToNextRow);
goToPreviousRow(): boolean;
goToPreviousRow(): boolean;
转到结果集的上一行。
该接口用于
转到结果集的上一行。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| -------
--
| --------------------------------------------- |
| ------- | --------------------------------------------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
isGoToPreviousRow
=
resultSet
.
goToPreviousRow
();
let
isGoToPreviousRow
=
resultSet
.
goToPreviousRow
();
console
.
info
(
'
resultSet.goToPreviousRow:
'
+
isGoToPreviousRow
);
console
.
info
(
'
resultSet.goToPreviousRow:
'
+
isGoToPreviousRow
);
```
```
...
@@ -122,7 +148,7 @@ console.info('resultSet.goToPreviousRow: ' + isGoToPreviousRow);
...
@@ -122,7 +148,7 @@ console.info('resultSet.goToPreviousRow: ' + isGoToPreviousRow);
goTo(offset:number): boolean;
goTo(offset:number): boolean;
向前或向后转至结果集的指定行,相对于其当前位置偏移。
该接口用于
向前或向后转至结果集的指定行,相对于其当前位置偏移。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
...
@@ -130,17 +156,19 @@ goTo(offset:number): boolean;
...
@@ -130,17 +156,19 @@ goTo(offset:number): boolean;
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| ---------- | -------- | -------- | ---------------------------- |
| ---------- | -------- | -------- | ---------------------------- |
|
*offset*
| number | 是 | 表示相对于当前位置的偏移量。 |
|
offset
| number | 是 | 表示相对于当前位置的偏移量。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| -------
--
| --------------------------------------------- |
| ------- | --------------------------------------------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
goToNum
=
1
;
let
goToNum
=
1
;
let
isGoTo
=
resultSet
.
goTo
(
goToNum
);
let
isGoTo
=
resultSet
.
goTo
(
goToNum
);
console
.
info
(
'
resultSet.goTo:
'
+
isGoTo
);
console
.
info
(
'
resultSet.goTo:
'
+
isGoTo
);
...
@@ -150,7 +178,7 @@ console.info('resultSet.goTo: ' + isGoTo);
...
@@ -150,7 +178,7 @@ console.info('resultSet.goTo: ' + isGoTo);
goToRow(position: number): boolean;
goToRow(position: number): boolean;
转到结果集的指定行。
该接口用于
转到结果集的指定行。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
...
@@ -158,17 +186,19 @@ goToRow(position: number): boolean;
...
@@ -158,17 +186,19 @@ goToRow(position: number): boolean;
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| ---------- | -------- | -------- | ------------------------ |
| ---------- | -------- | -------- | ------------------------ |
|
*position*
| number | 是 | 表示要移动到的指定位置。 |
|
position
| number | 是 | 表示要移动到的指定位置。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| -------
--
| --------------------------------------------- |
| ------- | --------------------------------------------- |
|
*boolean*
| 如果成功移动结果集,则为true;否则返回false。 |
|
boolean
| 如果成功移动结果集,则为true;否则返回false。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
goToRowNum
=
2
let
goToRowNum
=
2
let
isGoToRow
=
resultSet
.
goToRow
(
goToRowNum
);
let
isGoToRow
=
resultSet
.
goToRow
(
goToRowNum
);
console
.
info
(
'
resultSet.goToRow:
'
+
isGoToRow
);
console
.
info
(
'
resultSet.goToRow:
'
+
isGoToRow
);
...
@@ -176,27 +206,29 @@ console.info('resultSet.goToRow: ' + isGoToRow);
...
@@ -176,27 +206,29 @@ console.info('resultSet.goToRow: ' + isGoToRow);
## getBlob
## getBlob
getBlob(
*columnIndex*
:
*number*
): Uint8Array;
getBlob(
columnIndex: number
): Uint8Array;
以字节数组的形式获取当前行中指定列的值。
该接口用于
以字节数组的形式获取当前行中指定列的值。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | ----------------------- |
| ----------- | -------- | -------- | ----------------------- |
|
*columnIndex*
| number | 是 | 指定的列索引,从0开始。 |
|
columnIndex
| number | 是 | 指定的列索引,从0开始。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ----------
--
| -------------------------------- |
| ---------- | -------------------------------- |
|
*Uint8Array*
| 以字节数组的形式返回指定列的值。 |
|
Uint8Array
| 以字节数组的形式返回指定列的值。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
let
columnIndex
=
1
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
getBlob
=
resultSet
.
getBlob
(
columnIndex
);
let
getBlob
=
resultSet
.
getBlob
(
columnIndex
);
...
@@ -205,27 +237,29 @@ console.info('resultSet.getBlob: ' + getBlob);
...
@@ -205,27 +237,29 @@ console.info('resultSet.getBlob: ' + getBlob);
## getString
## getString
getString(
*columnIndex*
:
*number*
):
*string*
;
getString(
columnIndex: number
):
*string*
;
以字符串形式获取当前行中指定列的值。
该接口用于
以字符串形式获取当前行中指定列的值。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | ----------------------- |
| ----------- | -------- | -------- | ----------------------- |
|
*columnIndex*
| number | 是 | 指定的列索引,从0开始。 |
|
columnIndex
| number | 是 | 指定的列索引,从0开始。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ------
--
| ---------------------------- |
| ------ | ---------------------------- |
|
*string*
| 以字符串形式返回指定列的值。 |
|
string
| 以字符串形式返回指定列的值。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
let
columnIndex
=
1
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
getString
=
resultSet
.
getString
(
columnIndex
);
let
getString
=
resultSet
.
getString
(
columnIndex
);
...
@@ -234,27 +268,29 @@ console.info('resultSet.getString: ' + getString);
...
@@ -234,27 +268,29 @@ console.info('resultSet.getString: ' + getString);
## getLong
## getLong
getLong(
*columnIndex*
:
*number*
):
*number*
;
getLong(
columnIndex: number
):
*number*
;
以Long形式获取当前行中指定列的值。
该接口用于
以Long形式获取当前行中指定列的值。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | ----------------------- |
| ----------- | -------- | -------- | ----------------------- |
|
*columnIndex*
| number | 是 | 指定的列索引,从0开始。 |
|
columnIndex
| number | 是 | 指定的列索引,从0开始。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ------
--
| -------------------------- |
| ------ | -------------------------- |
|
*number*
| 以Long形式返回指定列的值。 |
|
number
| 以Long形式返回指定列的值。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
let
columnIndex
=
1
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
getLong
=
resultSet
.
getLong
(
columnIndex
);
let
getLong
=
resultSet
.
getLong
(
columnIndex
);
...
@@ -263,27 +299,29 @@ console.info('resultSet.getLong: ' + getLong);
...
@@ -263,27 +299,29 @@ console.info('resultSet.getLong: ' + getLong);
## getDouble
## getDouble
getDouble(
*columnIndex*
:
*number*
):
*number*
;
getDouble(
columnIndex: number
):
*number*
;
以double形式获取当前行中指定列的值。
该接口用于
以double形式获取当前行中指定列的值。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | ----------------------- |
| ----------- | -------- | -------- | ----------------------- |
|
*columnIndex*
| number | 是 | 指定的列索引,从0开始。 |
|
columnIndex
| number | 是 | 指定的列索引,从0开始。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ------
--
| ---------------------------- |
| ------ | ---------------------------- |
|
*number*
| 以double形式返回指定列的值。 |
|
number
| 以double形式返回指定列的值。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
let
columnIndex
=
1
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
goToFirstRow
=
resultSet
.
goToFirstRow
();
let
getDouble
=
resultSet
.
getDouble
(
columnIndex
);
let
getDouble
=
resultSet
.
getDouble
(
columnIndex
);
...
@@ -292,41 +330,43 @@ console.info('resultSet.getDouble: ' + getDouble);
...
@@ -292,41 +330,43 @@ console.info('resultSet.getDouble: ' + getDouble);
## close
## close
close():
*void*
;
close():
void
;
关闭结果集。
该接口用于
关闭结果集。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**示例:**
**示例:**
```
j
s
```
t
s
resultSet
.
close
();
resultSet
.
close
();
```
```
## getColumnIndex
## getColumnIndex
getColumnIndex(
*columnName*
:
*string*
):
*number*
;
getColumnIndex(
columnName: string
):
*number*
;
根据指定的列名获取列索引。
该接口用于
根据指定的列名获取列索引。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| ----------
--
| -------- | -------- | -------------------------- |
| ---------- | -------- | -------- | -------------------------- |
|
*columnName*
| string | 是 | 表示结果集中指定列的名称。 |
|
columnName
| string | 是 | 表示结果集中指定列的名称。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ------
--
| ------------------ |
| ------ | ------------------ |
|
*number*
| 返回指定列的索引。 |
|
number
| 返回指定列的索引。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
ColumnName
=
"
name
"
let
ColumnName
=
"
name
"
let
getColumnIndex
=
resultSet
.
getColumnIndex
(
ColumnName
)
let
getColumnIndex
=
resultSet
.
getColumnIndex
(
ColumnName
)
console
.
info
(
'
resultSet.getColumnIndex:
'
+
getColumnIndex
);
console
.
info
(
'
resultSet.getColumnIndex:
'
+
getColumnIndex
);
...
@@ -334,27 +374,29 @@ console.info('resultSet.getColumnIndex: ' + getColumnIndex);
...
@@ -334,27 +374,29 @@ console.info('resultSet.getColumnIndex: ' + getColumnIndex);
## getColumnName
## getColumnName
getColumnName(
*columnIndex*
:
*number*
):
*string*
;
getColumnName(
columnIndex: number
):
*string*
;
根据指定的列索引获取列名。
该接口用于
根据指定的列索引获取列名。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | -------------------------- |
| ----------- | -------- | -------- | -------------------------- |
|
*columnIndex*
| number | 是 | 表示结果集中指定列的索引。 |
|
columnIndex
| number | 是 | 表示结果集中指定列的索引。 |
**返回值:**
**返回值:**
| 类型
| 说明 |
| 类型 | 说明 |
| ------
--
| ------------------ |
| ------ | ------------------ |
|
*string*
| 返回指定列的名称。 |
|
string
| 返回指定列的名称。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
let
columnIndex
=
1
let
getColumnName
=
resultSet
.
getColumnName
(
columnIndex
)
let
getColumnName
=
resultSet
.
getColumnName
(
columnIndex
)
console
.
info
(
'
resultSet.getColumnName:
'
+
getColumnName
);
console
.
info
(
'
resultSet.getColumnName:
'
+
getColumnName
);
...
@@ -362,27 +404,29 @@ console.info('resultSet.getColumnName: ' + getColumnName);
...
@@ -362,27 +404,29 @@ console.info('resultSet.getColumnName: ' + getColumnName);
## getDataType
## getDataType
getDataType(
*columnIndex*
:
*number*
): DataType;
getDataType(
columnIndex: number
): DataType;
获取指定列的数据类型。
该接口用于
获取指定列的数据类型。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**系统能力:**
SystemCapability.DistributedDataManager.DataShare.Core。
**参数:**
**参数:**
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
|
**参数名**
|
**类型**
|
**必填**
| 说明 |
| -----------
--
| -------- | -------- | -------------------------- |
| ----------- | -------- | -------- | -------------------------- |
|
*columnIndex*
| number | 是 | 表示结果集中指定列的索引。 |
|
columnIndex
| number | 是 | 表示结果集中指定列的索引。 |
**返回值:**
**返回值:**
| 类型 | 说明 |
| 类型
| 说明 |
| ---------- | ------------------ |
| ----------
-----------
| ------------------ |
|
*DataType*
| 返回指定列的类型。 |
|
[
DataType
](
#datatype
)
| 返回指定列的类型。 |
**示例:**
**示例:**
```
js
```
ts
// Refer to the instructions for the method of obtaining resultSet
let
resultSet
;
let
columnIndex
=
1
;
let
columnIndex
=
1
;
let
getDataType
=
resultSet
.
getDataType
(
columnIndex
);
let
getDataType
=
resultSet
.
getDataType
(
columnIndex
);
console
.
info
(
'
resultSet.getDataType:
'
+
getDataType
);
console
.
info
(
'
resultSet.getDataType:
'
+
getDataType
);
...
@@ -390,7 +434,7 @@ console.info('resultSet.getDataType: ' + getDataType);
...
@@ -390,7 +434,7 @@ console.info('resultSet.getDataType: ' + getDataType);
## DataType
## DataType
用于表示数据类型。
该类型用于
用于表示数据类型。
只能被内部应用使用。
只能被内部应用使用。
...
...
zh-cn/application-dev/reference/apis/js-apis-data-ValuesBucket.md
浏览文件 @
468bd3b4
# ValuesBucket
# ValuesBucket
**数据集
(ValuesBucket)**
**数据集
(ValuesBucket) **
是用户通过DataShare进行插入的数据集合,通过DataShare的insert方法可以进行插入对应的数据集,update方法可以对已经插入的数据集进行修改,数据集以键-值对的形式进行传输。
>**说明:**
>**说明:**
>
>本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
## 导入模块
## 导入模块
```
j
s
```
t
s
import
{
ValueType
}
from
'
./
@ohos.data.ValuesBucket
'
;
import
{
ValueType
}
from
'
@ohos.data.ValuesBucket
'
;
import
{
ValuesBucket
}
from
'
./
@ohos.data.ValuesBucket
'
;
import
{
ValuesBucket
}
from
'
@ohos.data.ValuesBucket
'
;
```
```
## ValueType
## ValueType
用于表示允许的数据字段类型。
该类型
用于表示允许的数据字段类型。
| 名称
| 说明 |
| 名称 | 说明 |
| -------
--
| -------------------- |
| ------- | -------------------- |
|
*number*
| 表示值类型为数字。 |
|
number
| 表示值类型为数字。 |
|
*string*
| 表示值类型为字符串。 |
|
string
| 表示值类型为字符串。 |
|
*boolean*
| 表示值类型为布尔值。 |
|
boolean
| 表示值类型为布尔值。 |
## ValuesBucket
## ValuesBucket
用于存储键值对。
该类型用于存储一系列键值对。
| 名称 | 参数类型 | 必填 | 说明 |
| ------------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
|
[
key: string] | [ValueType
](
#valuetype
)
\|
Uint8Array
\|
null | 是 | 键的类型为字符串型;值的类型可以为数字,字符串,布尔值,无符号整型8位数组,空值。 |
| 名称 | 参数类型 | 必填 | 说明 |
| ------------- | ------------------------------- | ---- | ---------------- |
| [key: string] | ValueType
\|
Uint8Array
\|
null | 是 | 用于存储键值对。 |
zh-cn/application-dev/reference/apis/js-apis-data-dataShare.md
浏览文件 @
468bd3b4
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录