publicclassTest{publicstaticvoidmain(String[] args)throwsSQLException{Connection connection =JDBCtool.getconnection();String sql="update user set username='yoya' where id=1";PreparedStatement preparedStatement = connection.prepareStatement(sql);System.out.println(preparedStatement.executeUpdate());JDBCtool.close(connection,preparedStatement,null);}}
4、删除
publicclassTest{publicstaticvoidmain(String[] args)throwsSQLException{Connection connection =JDBCtool.getconnection();String sql="delete from user where id in (4,5)";PreparedStatement preparedStatement = connection.prepareStatement(sql);System.out.println(preparedStatement.executeUpdate());JDBCtool.close(connection,preparedStatement,null);}}
5、防止SQL注入
public class Test {public static void main(String[] args) throws SQLException {Connection connection = JDBCtool.getconnection();String sql="select * from user where id=?";PreparedStatement preparedStatement = connection.prepareStatement(sql);preparedStatement.setInt(1,1);ResultSet resultSet = preparedStatement.executeQuery();while (resultSet.next()){System.out.println(resultSet.getString("username"));}JDBCtool.close(connection,preparedStatement,resultSet);}
}
摘要:PARK 500 4100. BERMUDA HUNDRED ROAD, CHESTER, VIRGINIA 23831 TELEPHONE (804) 751-2000 March 3, 1992 Mr. A. C. Ray Virginia Water Control Board Piedmont Regional Office P. 0. Box 11143 Richmond, Virginia 23230 Subject: VPDES Permit No. VA00…
标题说明屏幕方向设置屏幕方向AppVeyor Travis CI Cordova屏幕方向插件Cordova插件以通用方式为 iOS。安卓和 windows UWP设置/锁定屏幕方向。 这个插件基于屏幕定向 API,所以API是当前的规范。插件将以下内容添加到屏幕对象( window.screen ):// lock the device o…
JAVA WEB篇4——Filter、Listener
1、Filter
Filter本意为”过滤“的含义,是JavaWeb的三大组件之一,三大组件为:Servlet、Filter、 Listener过滤器是向 Web 应用程序的请求和响应处理添加功能的 Web 服务组件过滤器相当于浏览器与Web资源之…