# File lib/dbd/mysql/driver.rb, line 106 106: def __shutdown(host, user, password, port=nil, sock=nil, flag=nil) 107: handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) 108: begin 109: handle.shutdown 110: ensure 111: handle.close if handle 112: end 113: end