func readRecord(_ recno: Int) -> Bool

Function readRecord() reads a record to internal memory block.
After reading you can use functions getString(), getValue(), getDateTime(), getTicks(), getMemoBuf()


{
    // your code
    for row in 0..<dbf.recCount()
    {
        dbf.readRecord(row)
        // your code
    }
}