Skip to content

Instantly share code, notes, and snippets.

@ml242
Created October 9, 2013 20:45
Show Gist options
  • Save ml242/6908035 to your computer and use it in GitHub Desktop.
Save ml242/6908035 to your computer and use it in GitHub Desktop.
Sinatra DB helper DO
helpers do
def db_exec(sql)
conn = PG.connect(:dbname =>'DB_NAME', :host => 'localhost')
result = conn.exec(sql)
conn.close
result
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment