21 lines
407 B
Ruby
21 lines
407 B
Ruby
#encoding: utf-8
|
|
require 'mysql2'
|
|
|
|
$mid_site_connection
|
|
|
|
module MiddleSiteConnection
|
|
|
|
@mid_host = {
|
|
:host => '127.0.0.1', #mruling.nccu.edu.tw or 127.0.0.1
|
|
:port => 8005, #3306 or 8005
|
|
:username => "root",
|
|
:password => "a3G6yWd9",
|
|
:database => "RSS23_NCCU_MIDDLE",
|
|
:encoding => "UTF8"
|
|
}
|
|
|
|
def self.establish
|
|
$mid_site_connection = Mysql2::Client.new(@mid_host)
|
|
end
|
|
|
|
end |