Skip to content

Instantly share code, notes, and snippets.

@THUFIR
Created March 24, 2012 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save THUFIR/2178392 to your computer and use it in GitHub Desktop.
Save THUFIR/2178392 to your computer and use it in GitHub Desktop.
query without rails
require 'fileutils'
require 'active_record'
puts "connecting..."
ActiveRecord::Base.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "ruby",
:password => "password",
:database => "rss"
)
puts "...connected"
####query rss database here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment