iOSSQLiteDatabaseField.Value

From Xojo Documentation

Read-Only Property (As Auto )
AutoValue = aiOSSQLiteDatabaseField.Value

Supported on Mobile (iOS).

Gets the value for a column.

Notes

You can use this instead of the more type-specific methods for more generic reading of column values.

Sample Code

Get the Text value for a a column:

// rs is an iOSSQLiteRecordSet with a Text column called "ProductName"
Var productName As Auto
productName = rs.Field("ProductName").Value