




版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、第十六章 回顧SQL99中的連接查詢(xún) 1)內(nèi)連接 2)外連接 3)自連接 第十七章 回顧hibernate多表開(kāi)發(fā)1)一對(duì)一2)一對(duì)多3)多對(duì)多第十八章 mybatis一對(duì)一映射【學(xué)生與身份證】1)參見(jiàn)2)創(chuàng)建students.sql和cards.sql drop table students;drop table cards;create table cards(idint(5)primary key,num varchar(20);create table students(idint(5)primary key,name varchar(10),cid int(5),constraint
2、 cid_fk foreign key(cid) references cards(id);insert into cards(id,num) values(1,111);insert into students(id,name,cid) values(1,哈哈,1);3)創(chuàng)建Students.java和Card.java public class Card private Integer id;private String num;private Student student;public Card()public Integer getId() return id;public void
3、 setId(Integer id) this.id = id;public String getNum() return num;public void setNum(String num) this.num = num;public Student getStudent() return student;public void setStudent(Student student) this.student = student;public class Student private Integer id;private String name;private Card card;publ
4、ic Student()public Integer getId() return id;public void setId(Integer id) this.id = id;public String getName() return name;public void setName(String name) = name;public Card getCard() return card;public void setCard(Card card) this.card = card;4)創(chuàng)建StudentMapper.xml和CardMapper.xml CardMap
5、per.xml StudentMapper.xmlselect s.id,,c.id,c.numfrom students s inner join cards con s.cid = c.id and s.id = #id5)創(chuàng)建StudentCardDao.java public class StudentCardDao /* * 查詢(xún)1號(hào)【學(xué)生】 */public Student findById(int id) throws ExceptionSqlSession sqlSession = null;trysqlSession = MybatisUtil.getSqlSes
6、sion();return sqlSession.selectOne(studentNamespace.findById,id);catch(Exception e)e.printStackTrace();throw e;finallyMybatisUtil.closeSqlSession();public static void main(String args) throws ExceptionStudentCardDao dao = new StudentCardDao();Student student = dao.findById(1);System.out.println(stud
7、ent.getId()+:+student.getName();System.out.println(student.getCard().getId()+:+student.getCard().getNum();第十九章 mybatis一對(duì)多映射【班級(jí)與學(xué)生】1)參見(jiàn)2)創(chuàng)建grades.sql和students.sqldrop table students;drop table grades;create table grades(gidint(5)primary key,gname varchar(10) );create table students(sidint(5)primary k
8、ey,sname varchar(10), sgid int(5), constraint sgid_fk foreign key(sgid) references grades(gid);insert into grades(gid,gname) values(1,java);insert into students(sid,sname,sgid) values(1,哈哈,1);insert into students(sid,sname,sgid) values(2,呵呵,1);3)創(chuàng)建Grade.java和Student.sql/* * 班級(jí)(單方) * author AdminTC *
9、/public class Grade private Integer id;private String name;private List studentList = new ArrayList();public Grade()public Integer getId() return id;public void setId(Integer id) this.id = id;public String getName() return name;public void setName(String name) = name;public List getStudent
10、List() return studentList;public void setStudentList(List studentList) this.studentList = studentList;/* * 學(xué)生(多方) * author AdminTC */public class Student private Integer id;private String name;private Grade grade;public Student()public Integer getId() return id;public void setId(Integer id) this.id
11、= id;public String getName() return name;public void setName(String name) = name;public Grade getGrade() return grade;public void setGrade(Grade grade) this.grade = grade;4)創(chuàng)建GradeMapper.xml和StudentMapper.xml GradeMapper.xmlselect g.gid,g.gname,s.sid,s.snamefrom grades g,students swhere g.
12、gid = s.sgidand s.sname = #name StudentMapper.xmlselect s.sid,s.sname,g.gid,g.gnamefrom grades g,students swhere g.gid = s.sgidand g.gname = #name5)創(chuàng)建GradeStudentDao.javapublic class GradeStudentDao /* * 查詢(xún)java班級(jí)有哪些【學(xué)生】 */public List findAllByName(String name) throws ExceptionSqlSession sqlSession =
13、 null;trysqlSession = MybatisUtil.getSqlSession();return sqlSession.selectList(studentNamespace.findAllByName,name);catch(Exception e)e.printStackTrace();throw e;finallyMybatisUtil.closeSqlSession();/* * 查詢(xún)哈哈屬于哪個(gè)【班級(jí)】 */public Grade findGradeByName(String name) throws ExceptionSqlSession sqlSession =
14、 null;trysqlSession = MybatisUtil.getSqlSession();return sqlSession.selectOne(gradeNamespace.findGradeByName,name);catch(Exception e)e.printStackTrace();throw e;finallyMybatisUtil.closeSqlSession();public static void main(String args) throws ExceptionGradeStudentDao dao = new GradeStudentDao();List
15、studentList = dao.findAllByName(java);for(Student s : studentList)System.out.println(s.getId()+:+s.getName()+:+s.getGrade().getId()+:+s.getGrade().getName();Grade grade = dao.findGradeByName(哈哈);System.out.println(grade.getId()+:+grade.getName();第二十章 mybatis多對(duì)多映射【學(xué)生與課程】1)參見(jiàn)2)創(chuàng)建students.sql和courses.s
16、ql和middles.sqldrop table middles;drop table students;drop table courses;create table students(sid int(5) primary key,sname varchar(10);create table courses(cid int(5) primary key,cname varchar(10);create table middles(sid int(5),cid int(5),primary key(sid,cid);insert into students(sid,sname) values(
17、1,哈哈);insert into students(sid,sname) values(2,呵呵);insert into courses(cid,cname) values(1,java);insert into courses(cid,cname) values(2,net);insert into middles(sid,cid) values(1,1);insert into middles(sid,cid) values(1,2);insert into middles(sid,cid) values(2,1);insert into middles(sid,cid) values
18、(2,2);select * from students;select * from courses;select * from middles;3)創(chuàng)建Student.java和Course.java/* * 學(xué)生(多方) * author AdminTC */public class Student private Integer id;private String name;private List courseList = new ArrayList();public Student()public Integer getId() return id;public void setId
19、(Integer id) this.id = id;public String getName() return name;public void setName(String name) = name;public List getCourseList() return courseList;public void setCourseList(List courseList) this.courseList = courseList;/* * 課程(多方) * author AdminTC */public class Course private Integer id;
20、private String name;private List studentList = new ArrayList();public Course()public Integer getId() return id;public void setId(Integer id) this.id = id;public String getName() return name;public void setName(String name) = name;public List getStudentList() return studentList;public void
21、setStudentList(List studentList) this.studentList = studentList;4)創(chuàng)建StudentMapper.xml和CourseMapper.xml StudentMapper.xmlselect s.sid,s.snamefrom students s,middles m,courses cwhere s.sid = m.sid and m.cid = c.cidand ame = #name CourseMapper.xmlselect c.cid,amefrom students s,middles m,courses cwhere
22、 s.sid = m.sid and m.cid = c.cidand s.sname = #name5)創(chuàng)建students.sql和courses.sql和middles.sqlpublic class StudentCourseDao /* * 查詢(xún)哈哈選學(xué)的【課程】 */public List findCourseByName(String name) throws ExceptionSqlSession sqlSession = null;trysqlSession = MybatisUtil.getSqlSession();return sqlSession.selectList(
23、courseNamespace.findCourseByName,name);catch(Exception e)e.printStackTrace();throw e;finallyMybatisUtil.closeSqlSession();/* * 查詢(xún)java課程有哪些【學(xué)生】 */public List findStudentByName(String name) throws ExceptionSqlSession sqlSession = null;trysqlSession = MybatisUtil.getSqlSession();return sqlSession.selec
24、tList(studentNamespace.findStudentByName,name);catch(Exception e)e.printStackTrace();throw e;finallyMybatisUtil.closeSqlSession();public static void main(String args) throws ExceptionStudentCourseDao dao = new StudentCourseDao();/List courseList = dao.findCourseByName(哈哈);/for(Course c : courseList)
25、/System.out.println(c.getId()+:+c.getName();/List studentList = dao.findStudentByName(java);for(Student s : studentList)System.out.println(s.getId()+:+s.getName(); 第二十一章 spring + mybatis + mysql/oracle開(kāi)發(fā)1)創(chuàng)建一個(gè)spring-mybatis-mysql這么一個(gè)javaweb或java工程2)導(dǎo)入spring-ioc,spring-aop,spring-transaction,mybatis,
26、c3p0,mysql/oracle相關(guān)的jar包和spring整合mybatis的jar包3)創(chuàng)建students.sql-mysqlcreate table students( sid int(5) primary key, sname varchar(10), ssal double(8,2);4)創(chuàng)建Student.java/* * 學(xué)生 * author AdminTC */public class Student private Integer id;/編號(hào)private String name;/姓名private Double sal;/薪水public Student()pub
27、lic Student(Integer id, String name, Double sal) this.id = id; = name;this.sal = sal;public Integer getId() return id;public void setId(Integer id) this.id = id;public String getName() return name;public void setName(String name) = name;public Double getSal() return sal;public voi
28、d setSal(Double sal) this.sal = sal;5)創(chuàng)建StudentMapper.xmlinsert into students(sid,sname,ssal) values(#id,#name,#sal)6)創(chuàng)建StudentDao.javapublic class StudentDao private SqlSessionFactory sqlSessionFactory;public void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory) this.sqlSessionFactory = sq
29、lSessionFactory;public void insert(Student student)SqlSession sqlSession = sqlSessionFactory.openSession();sqlSession.insert(studentNamespace.insert,student);/int i = 10/0;public static void main(String args) ApplicationContext ac = new ClassPathXmlApplicationContext(new Stringspring.xml);StudentDao
30、 studentDao = (StudentDao) ac.getBean(studentDaoID);studentDao.insert(new Student(1,哈哈,7000D);7)在src目錄下創(chuàng)建mybatis.xml8)在src目錄下創(chuàng)建spring.xml 第二十二章 jsp/js/jquery/easyui/json + springmvc + spring + mybatis + mysql/oracle開(kāi)發(fā)1) 員工管理系統(tǒng)-增加員工第二十三章 jdbc訪問(wèn)oracle存儲(chǔ)過(guò)程和存儲(chǔ)函數(shù)1)寫(xiě)一個(gè)計(jì)算個(gè)人所得稅的應(yīng)用-定義過(guò)程create or replace proc
31、edure get_rax(salary in number,rax out number)as -需要交稅的錢(qián) bal number;begin bal := salary - 3500; if bal=1500 then rax := bal * 0.03 - 0; elsif bal=4500 then rax := bal * 0.1 - 105; elsif bal=9000 then rax := bal * 0.2 - 555; elsif bal=35000 then rax := bal * 0.25 - 1005; elsif bal=55000 then rax := b
32、al * 0.3 - 2755; elsif bal=80000 then rax := bal * 0.35 - 5505; else rax := bal * 0.45 - 13505; end if;end;/-調(diào)用過(guò)程declare -交稅 rax number; salary number := &salary;begin get_rax(salary,rax); dbms_output.put_line(salary|元工資需要交|rax|元稅);end;/ /Java調(diào)用過(guò)程public class TestCallOracleProc public static void main(String args) throws ExceptionString sql = call get_rax(?,?);Connection conn = JdbcUtil.getConnection();CallableStatement cstmt = conn.prepareCall(sql);cstmt.setInt(1,10000);cstmt.registerOutParameter(2,Types.INTEGER);cstmt.execute();Integer rax = cstmt.getInt(2);System.out.println(10
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025河南洛陽(yáng)市某央企金融單位招聘銷(xiāo)售人員筆試歷年參考題庫(kù)附帶答案詳解
- 2025中煤西北能源有限公司招聘130人筆試歷年參考題庫(kù)附帶答案詳解
- 遼寧省鞍山市2024-2025學(xué)年八年級(jí)下學(xué)期期末質(zhì)量檢測(cè)語(yǔ)文試卷(含答案)
- 兒童惡性腫瘤術(shù)前護(hù)理
- 屬于安全生產(chǎn)事故報(bào)告內(nèi)容的有
- 案例學(xué)習(xí)-浙江6
- 青春期女生身體健康教育
- 沉迷網(wǎng)絡(luò)安全教育
- 中醫(yī)期末試題及答案
- 2007年湖北省恩施市中考數(shù)學(xué)試卷【含答案解析】
- 【公開(kāi)課】發(fā)生在肺內(nèi)的氣體交換課件-2024-2025學(xué)年人教版生物七年級(jí)下冊(cè)
- 小組互評(píng)活動(dòng)方案
- 商場(chǎng)夏季餐飲活動(dòng)方案
- 2025年中國(guó)普通聚醚市場(chǎng)調(diào)查研究報(bào)告
- 2025央國(guó)企AI+數(shù)智化轉(zhuǎn)型研究報(bào)告
- 倉(cāng)儲(chǔ)部標(biāo)簽管理制度
- 風(fēng)機(jī)吊裝安全培訓(xùn)
- 公司貿(mào)易合規(guī)管理制度
- CJ/T 461-2014水處理用高密度聚乙烯懸浮載體填料
- 教育培訓(xùn)機(jī)構(gòu)分租協(xié)議書(shū)
- 小學(xué)保潔承包協(xié)議書(shū)
評(píng)論
0/150
提交評(píng)論