Guest User

Untitled

a guest
Jul 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Sequel::Dataset
  2. def to_table(file = $stdout)
  3. records = self.all
  4. if records.empty?
  5. file.puts "No records found"
  6. file.puts self.sql
  7. else
  8. file.puts records.first.keys.join("\t")
  9. records.each{|row| file.puts row.values.join("\t")}
  10. end
  11. end
  12. end
Add Comment
Please, Sign In to add comment