blob: 67fb495564cd6287d6b020d872ad60c56e63fe36 [file] [log] [blame]
import java.sql.*;
public class Test {
public void runScript(Statement st) throws SQLException {
st.execute("create table some_table (id integer primary key)");
st.execute("insert into some_table values(1)");
st.execute("select * from some_table");
st.execute("drop table some_table");
}
}