Created
June 13, 2011 01:19
-
-
Save kinopyo/1022191 to your computer and use it in GitHub Desktop.
MySQL connection test code for Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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