4950515253545556575859
if (reader.read() != UTF8_BOM) { reader.reset(); } ScriptReader r = new ScriptReader(reader); while (true) { String sql = r.readStatement(); if (sql == null) { break; } execute(sql); count++;