StatementColumnMetadata

sealed external interface StatementColumnMetadata(source)

Properties

Link copied to clipboard
abstract var column: String?

The unaliased name of the column in the origin table, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_origin_name().

Link copied to clipboard
abstract var database: String?

The unaliased name of the origin database, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_database_name().

Link copied to clipboard
abstract var name: String

The name assigned to the column in the result set of a SELECT statement. This property is the result of sqlite3_column_name().

Link copied to clipboard
abstract var table: String?

The unaliased name of the origin table, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_table_name().

Link copied to clipboard
abstract var type: String?

The declared data type of the column, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_decltype().