| Property | Description
|
| BooleanValue As Boolean | Gets or sets the column as a Boolean. Note that the string values "0" and "False" are treated as False and "1" and "True" are treated as True.
|
| CurrencyValue As Currency | Gets or sets the column value as a Currency
|
| DateValue As Date | Gets or sets the column value as Date
|
| DoubleValue As Double | Gets or sets the column value as a Double
|
| Int64Value As Int64 | Gets or sets the column value as an Int64
|
| IntegerValue As Integer | Gets or sets the column value as an Integer
|
| StringValue As String | Gets or sets the column value as a String. If the column is actually of another datatype, it will try to be converted to a String. Text is automatically converted to UTF-8 text encoding.
|
| Value As Variant | Gets or sets the column value as a Variant. It is recommended you use the specific data type properties instead. When using PostgreSQLDatabase, you can use this property to set a column to NULL, by assigning this property to Nil.
|