rs = st.executeQuery("create table b(a char(2))");//执行静态SQL语句并返回结果
rs = st.executeQuery("insert into b values('c')");
rs = st.executeQuery("select * from a");
连续几句放在一起,只能执行第一句,之后两句没有反应,要怎么样才能连续执行SQL语句?
rs = st.executeQuery("insert into b values('c')");
rs = st.executeQuery("select * from a");
连续几句放在一起,只能执行第一句,之后两句没有反应,要怎么样才能连续执行SQL语句?