主题:求助:sql问题
String command="select *from business where 日期>="+startDate+" and 日期<="+endDate;
Statement st=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rst=st.executeQuery(command);
上面语句出错,但是去掉ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE后就没有问题,哪位高人知道?
Statement st=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rst=st.executeQuery(command);
上面语句出错,但是去掉ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE后就没有问题,哪位高人知道?