Method: Libsql::Statement#result_fields

Defined in:
lib/libsql/statement.rb

#result_fieldsObject

Return the array of field names for the result set, the field names are all strings



384
385
386
# File 'lib/libsql/statement.rb', line 384

def result_fields
  @fields ||= result_meta.collect { |m| m.name }
end