欢迎来到天天文库
浏览记录
ID:47376954
大小:142.50 KB
页数:9页
时间:2019-07-19
《java地MVC模式地大数据库增删改查》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实用文档攀枝花学院实验报告实验课程:JAVA应用开发实验项目:JSP操作数据库实验日期:2013.5系:计算机班级:10计本1班姓名:蒋志勇学号:201010801035指导老师:范胜波成绩:一.实验目的:1.掌握JSP,servlet的基本应用。2.掌握用JSP对数据库进行增,删,查,改操作。二.实验设备Eclipse,Mysql数据库,Tomact三.实验内容1.创建数据库javaee和表Users,Users的sql语句为:CREATETABLE`users`(`id`int(11)NOTNULLAUTO_INCREMENT,`UserName
2、`varchar(30)NOTNULL,`Password`varchar(30)NOTNULL,PRIMARYKEY(`id`))ENGINE=InnoDBAUTO_INCREMENT=6DEFAULTCHARSET=utf8;2.编写数据库连接、增、删、查、改类UserDao,核心代码如下:publicclassUserDao{finalstaticStringurl="jdbc:mysql://localhost:3306/javaee?useUnicode=true&characterEncoding=UTF-8";finalstaticSt
3、ringuser="root";finalstaticStringpassword="123456";static{try{Class.forName("com.mysql.jdbc.Driver");}catch(ClassNotFoundExceptione){e.printStackTrace();}}//数据库连接privateConnectiongetConnection()throwsSQLException{Connectionconn=DriverManager.getConnection(url,user,password);ret
4、urnconn;}文案大全实用文档//根据ID删除用户publicbooleandelUser(intid){booleanflag=false;StringaddUserSQL="DELETEFROMUsersWHEREID=?";Connectionconn=null;PreparedStatementpst=null;try{conn=getConnection();pst=conn.prepareStatement(addUserSQL);pst.setInt(1,id);flag=(pst.executeUpdate()==1);}catc
5、h(SQLExceptione){e.printStackTrace();}finally{try{pst.close();conn.close();}catch(SQLExceptione){e.printStackTrace();}}returnflag;}//增加用户publicbooleanaddUser(UsernewUser){booleanflag=false;StringaddUserSQL="INSERTINTOUsers(UserName,Password)VALUES(?,?)";Connectionconn=null;Prep
6、aredStatementpst=null;try{conn=getConnection();pst=conn.prepareStatement(addUserSQL);pst.setString(1,newUser.getUserName());pst.setString(2,newUser.getPassword());flag=(pst.executeUpdate()==1);}catch(SQLExceptione){e.printStackTrace();}finally{try{pst.close();conn.close();}catc
7、h(SQLExceptione){e.printStackTrace();文案大全实用文档}}returnflag;}//分页查询用户publicListgetUser(intstartIndex,intcount){ListuserList=newArrayList();StringgetUserSQL="SELECTID,UserName,PasswordFROMUsersORDERBYIDDescLIMIT?,?";Connectionconn=null;PreparedStatementpst=null;R
8、esultSetrs=null;try{conn=getConnection();pst=conn.prep
此文档下载收益归作者所有