All Products
Search
Document Center

Tablestore:Data type

Last Updated:Jan 19, 2024

This topic describes the correspondence between the five data types supported by Tablestore and the data types supported by Tablestore SDK for Node.js.

Note

For more information about the data types supported by Tablestore, see Naming conventions and data types.

Data type in Tablestore

Data type in SDK for Node.js

Description

String

string

The basic data type in JavaScript.

Integer

int64

The type of data encapsulated by SDK for Node.js.

Double

number

The basic data type in JavaScript.

Boolean

boolean

The basic data type in JavaScript.

Binary

Buffer

The Buffer object of Node.js.

The Integer data type in Tablestore is 64-bit signed integers and does not have a corresponding data type in JavaScript. A data type that can support 64-bit signed integers is required for Node.js. The following code provides an example on how to convert the integer data type in Tablestore:

var numberA = TableStore.Long.fromNumber(1000);
var numberB = TableStore.Long.fromString('2000');

var numA = numberA.toNumber();
var numB = numberA.toString();

var strA = numberB.toNumber();
var strB = numberB.toString();