Merge pull request #2 from netfeed/result_set_columns

should return columns and not types
This commit is contained in:
Ary Borenszweig 2015-09-07 10:04:31 -03:00
commit 3125ad0191
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class SQLite3::ResultSet
# Returns the names of the columns, an `Array(String)`.
def columns
@statement.types
@statement.columns
end
# Advances to the next row. Returns `true` if there's a next row,