From fe6618ef5bf6a4d8ca611603b44c799e3885a452 Mon Sep 17 00:00:00 2001 From: Annie_wang Date: Fri, 24 Feb 2023 15:25:19 +0800 Subject: [PATCH] update docs Signed-off-by: Annie_wang --- .../reference/apis/js-apis-data-resultset.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/application-dev/reference/apis/js-apis-data-resultset.md b/en/application-dev/reference/apis/js-apis-data-resultset.md index 8cdecd1134..634dd98afa 100644 --- a/en/application-dev/reference/apis/js-apis-data-resultset.md +++ b/en/application-dev/reference/apis/js-apis-data-resultset.md @@ -331,7 +331,7 @@ Obtains the value in the specified column in the current row as a string. getLong(columnIndex: number): number -Obtains the value in the specified column in the current row as a Long. +Obtains the value in the specified column in the current row as a Long integer. **System capability**: SystemCapability.DistributedDataManager.RelationalStore.Core @@ -343,9 +343,9 @@ Obtains the value in the specified column in the current row as a Long. **Return value** - | Type| Description| - | -------- | -------- | - | number | Value in the specified column as a Long.| +| Type| Description| +| -------- | -------- | +| number | Value in the specified column as a Long integer.
The value range supported by this API is **Number.MIN_SAFE_INTEGER** to **Number.MAX_SAFE_INTEGER**. If the value is out of this range, use [getDouble](#getdouble).| **Example** -- GitLab