# File lib/rubyrep/replication_helper.rb, line 58
    def load_record(database, table, key)
      cursor = session.send(database).select_cursor(
        :table => table,
        :row_keys => [key],
        :type_cast => true
      )
      row = nil
      row = cursor.next_row if cursor.next?
      cursor.clear
      row
    end