Skip to content

Instantly share code, notes, and snippets.

@tealtail
Last active December 25, 2015 03:19
Show Gist options
  • Save tealtail/6908727 to your computer and use it in GitHub Desktop.
Save tealtail/6908727 to your computer and use it in GitHub Desktop.
Sinatra DB Helper module
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