mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Add ResultSet#column_names
. Fixes #11
This commit is contained in:
parent
1a4622ee59
commit
b5112d9a48
2 changed files with 13 additions and 0 deletions
|
@ -56,4 +56,12 @@ describe DB::ResultSet do
|
||||||
|
|
||||||
cols.should eq(["c0", "c1"])
|
cols.should eq(["c0", "c1"])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "gets all column names" do
|
||||||
|
with_dummy do |db|
|
||||||
|
db.query "1,2" do |rs|
|
||||||
|
rs.column_names.should eq(%w(c0 c1))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -61,6 +61,11 @@ module DB
|
||||||
# Returns the name of the column in `index` 0-based position.
|
# Returns the name of the column in `index` 0-based position.
|
||||||
abstract def column_name(index : Int32) : String
|
abstract def column_name(index : Int32) : String
|
||||||
|
|
||||||
|
# Returns the name of the columns.
|
||||||
|
def column_names
|
||||||
|
Array(String).new(column_count) { |i| column_name(i) }
|
||||||
|
end
|
||||||
|
|
||||||
# Reads the next column value
|
# Reads the next column value
|
||||||
abstract def read
|
abstract def read
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue