Skip to content

Instantly share code, notes, and snippets.

@kinopyo
Created June 13, 2011 01:19
Show Gist options
  • Save kinopyo/1022191 to your computer and use it in GitHub Desktop.
Save kinopyo/1022191 to your computer and use it in GitHub Desktop.
MySQL connection test code for Ruby
# mysql_connect.rb - simple MySQL script using Ruby MySQL module
require "mysql"
begin
# connect to the MySQL server
dbh = Mysql.real_connect("localhost", "testuser", "testpass", "testdb")
# get server version string and display it
puts "Server version: " + dbh.get_server_info
rescue Mysql::Error => e
puts "Error code: #{e.errno}"
puts "Error message: #{e.error}"
puts "Error SQLSTATE: #{e.sqlstate}" if e.respond_to?("sqlstate")
ensure
# disconnect from server
dbh.close if dbh
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment