資源描述:
《DAOimpl(刪除-查詢)代碼.doc》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、publicclassprofeUserDAOImplimplementsprofeUserDAO{/**功能:此方法用戶根據(jù)給定的專業(yè)編號,查詢相應(yīng)的專業(yè)對象輸入?yún)?shù):專業(yè)編號返回值:專業(yè)對象*/publicprofeUserfindprofeUserByprofe_id(intprofe_id){//TODOAuto-generatedmethodstubprofeUserpu=newprofeUser();//建立于數(shù)據(jù)庫的鏈接Connectionconn=DatabaseConnection.getConnection();//封裝SQL語句Stringsql=
2、"selectprofe_id,profe_name,passwordfromprofeuserwhereprofe_id="+profe_id;Statementstmt=null;ResultSetrs=null;try{stmt=conn.createStatement();rs=stmt.executeQuery(sql);while(rs.next()){au.seprofe_id(rs.getInt(1));au.setprofe_name(rs.getString(2));au.setpassword(rs.getString(3));}}catch(SQ
3、LExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}finally{if(rs!=null){try{rs.close();}catch(SQLExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}}if(stmt!=null){try{stmt.close();}catch(SQLExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}}if(conn!
4、=null){try{conn.close();}catch(SQLExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}}}returnau;}/**功能:此方法用戶根據(jù)給定的專業(yè)對象,完成專業(yè)更新操作輸入?yún)?shù):用戶對象返回值:true-刪除成功false-刪除失敗*/publicbooleanupdateprofeUser(profeUserpu){//TODOAuto-generatedmethodstub//設(shè)定一個標(biāo)記booleanflag=false;//建立于數(shù)據(jù)庫的鏈接Connect
5、ionconn=DatabaseConnection.getConnection();try{conn.setAutoCommit(false);}catch(SQLExceptione1){//TODOAuto-generatedcatchblocke1.printStackTrace();}//封裝SQL語句StringupdateSQL="updateprofeusersetprofe_name=?,password=?whereprofe_id=?";//聲明預(yù)處理語句集來處理SQL語句java.sql.PreparedStatementpstmt=null;t
6、ry{pstmt=conn.prepareStatement(updateSQL);pstmt.setString(1,pu.getprofe_name());pstmt.setString(2,pu.getpassword());pstmt.setString(3,pu.Getprofe_id());intstatus=pstmt.executeUpdate();if(status>0){flag=true;conn.commit();}else{flag=false;conn.rollback();}}catch(SQLExceptione){//TODOAuto-
7、generatedcatchblocke.printStackTrace();try{conn.rollback();}catch(SQLExceptione1){//TODOAuto-generatedcatchblocke1.printStackTrace();}}finally{if(pstmt!=null){try{pstmt.close();}catch(SQLExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}}if(conn!=null){try{co