blob: f6ee718db163d7fd3ed02ada06df1e4cc60641e4 [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("<spot>select * from some_table</spot>");
st.execute("drop table some_table");
}
}