15 lines
		
	
	
		
			303 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			303 B
		
	
	
	
		
			Ruby
		
	
	
	
| #encoding: utf-8
 | |
| 
 | |
| require 'mysql2'
 | |
| 
 | |
| 
 | |
| mid_host = { 
 | |
|   :host => 'mruling.nccu.edu.tw',  #mruling.nccu.edu.tw or 127.0.0.1
 | |
|   :port => 3306, #3306 or 8005
 | |
|   :username => "root",
 | |
|   :password => "a3G6yWd9",
 | |
|   :database => "RSS23_NCCU_MIDDLE",
 | |
|   :encoding => "UTF8"
 | |
| }
 | |
| MID_CLIENT = Mysql2::Client.new(mid_host)
 |