# File lib/dbd/mysql/driver.rb, line 115 115: def __reload(host, user, password, port=nil, sock=nil, flag=nil) 116: handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) 117: begin 118: handle.reload 119: ensure 120: handle.close if handle 121: end 122: end