DatabaseField
Class DatabaseField

PropertyDescription
BooleanValue As BooleanGets 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 CurrencyGets or sets the column value as a Currency
DateValue As DateGets or sets the column value as Date
DoubleValue As DoubleGets or sets the column value as a Double
Int64Value As Int64Gets or sets the column value as an Int64
IntegerValue As IntegerGets or sets the column value as an Integer
StringValue As StringGets 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 VariantGets 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.


Method PrototypeDescription
Function GetString() As StringGets the string value (use StringValue instead)
Function Name() As StringReturns the name of the column
Function NativeValue() As StringReturns the value from the database in its native encoding, which is useful when dealing with BLOB columns
Sub SetString( Assigns newValue As String ) — Sets the string value (use StringValue instead)