API Reference > imodeljs-backend > SQLite > SqliteValue SqliteValue Class Value of a column in a row of an SQLite SQL query result. See also: SqliteStatement SqliteStatement.getValue Methods Name Description constructor(stmt: SqliteStatement, colIndex: number): SqliteValue getBlob(): Uint8Array Get the value as BLOB getDouble(): number Get the value as a double value getGuid(): string Get the value as a Guid value getId(): string Get the value as an Id value getInteger(): number Get the value as a integer value getString(): string Get the value as a string value Properties Name Type Description columnName Accessor ReadOnly string Gets the name of the column of the value. isNull Accessor ReadOnly boolean Indicates whether the value is NULL or not. type Accessor ReadOnly SqliteValueType Gets the data type of the value. value Accessor ReadOnly any Gets the SqlValue as JavaScript value. Defined in core/backend/src/SqliteStatement.ts Line 364 Last Updated: 11 June, 2024