Table of Contents






SqlQueryAnswer

A struct which is returned from a successfull executed SqlQuery. It either contains full records or defined record columns.

Variants
data type description
SqlQueryAnswer::Records List if records returned from an SQL query
SqlQueryAnswer::Columns Mutliple columns returned from an SQL query
Description

Returns a list with the records returned from the database query.

Returns
data type description
Option<Vec<Record>> The records if available
Description

Returns a vector of objects, which contain the columns requested.

Returns
data type description
Option<Vec<Object>> A list of objects with the columns inside