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 12a6b4af059ad689d7b782b3cbca27bf86d674d5..1e87e0a63436d7dbfb073ce0ac3b7ff3bffef1f2 100644 --- a/en/application-dev/reference/apis/js-apis-data-resultset.md +++ b/en/application-dev/reference/apis/js-apis-data-resultset.md @@ -861,7 +861,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 @@ -873,9 +873,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**