# File lib/dbd/mysql/driver.rb, line 88 88: def __createdb(db, host, user, password, port=nil, sock=nil, flag=nil) 89: handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) 90: begin 91: handle.create_db(db) 92: ensure 93: handle.close if handle 94: end 95: end