Method: Libsql::Statement#result_fields
- Defined in:
- lib/libsql/statement.rb
#result_fields ⇒ Object
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 ||= .collect { |m| m.name } end |