iOSSQLiteDatabaseField.NativeValue

From Xojo Documentation

Read-Only Property (As MemoryBlock )
MemoryBlockValue = aiOSSQLiteDatabaseField.NativeValue

Supported on Mobile (iOS).

Gets the native value for a column. Useful for reading BLOB columns.

Sample Code

Get BLOB data for a column:

// rs is an iOSSQLiteRecordSet with a BLOB column called "FileData"
Var data As Xojo.Core.MemoryBlock
data = rs.Field("FileData").NativeValue