# File lib/dbd/mysql/driver.rb, line 97 97: def __dropdb(db, host, user, password, port=nil, sock=nil, flag=nil) 98: handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) 99: begin 100: handle.drop_db(db) 101: ensure 102: handle.close if handle 103: end 104: end