Advertisement
Guest User

Untitled

a guest
Feb 25th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. "The Shining","9","7808","4156"
  2. "Dune","15","4513","1866"
  3. "2001: A Space Odyssey","15","4267","2001"
  4. "The Cat in the Hat","2","1608","1809"
  5. "Bartholomew and the Oobleck","2","1590","1809"
  6.  
  7. "4156","The Shining","9","7808"
  8. "1866","Dune","15","4513"
  9. "2001","2001: A Space Odyssey","15","4267"
  10. "1809","The Cat in the Hat","2","1608"
  11. "1809","Bartholomew and the Oobleck","2","1590"
  12.  
  13. "9","The Shining","7808","4156"
  14. "15","Dune","4513","1866"
  15. "15","2001: A Space Odyssey","4267","2001"
  16. "2","The Cat in the Hat","1608","1809"
  17. "2","Bartholomew and the Oobleck","1590","1809"
  18.  
  19. confrom = PG::Connection.new(:user => <myuser>, :password => <mypw>, :port => 5432, :host => <myhost>, :dbname => 'booktown')
  20. results = confrom.exec("select * from books")
  21. results.each do |row|
  22. row.each_value do |x|
  23. puts x
  24. end
  25. end
  26.  
  27. results.each do |row|
  28. #...
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement