Guest User

Untitled

a guest
Sep 19th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. require 'fileutils'
  2. require 'active_record'
  3.  
  4. puts "connecting..."
  5.  
  6. ActiveRecord::Base.establish_connection(
  7. :adapter => "mysql",
  8. :host => "localhost",
  9. :username => "ruby",
  10. :password => "password",
  11. :database => "rss"
  12. )
  13.  
  14. puts "...connected"
  15.  
  16. ####query rss database here
Add Comment
Please, Sign In to add comment