最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Oracle作業(yè):JDBC連接數(shù)據(jù)庫增刪改查,搭建一個Mybatis框架,創(chuàng)建一個表【詩書畫唱】

2021-03-09 19:52 作者:詩書畫唱  | 我要投稿

概括:

搭建一個Mybatis框架

在數(shù)據(jù)庫中創(chuàng)建一個寵物表(id,name,color)

在數(shù)據(jù)庫中創(chuàng)建一個科目表(id,sname,point)

在數(shù)據(jù)庫中創(chuàng)建一個車類表(cid,cname,cp車牌號,describe描述)

在mybatis框架中,對上面的三個表進行下面的操作:

selectAll

selectById

add

update

deleteById

要寫三個bean,三個sqlMap.xml文件和一個測試類


作業(yè) START


1、搭建一個Mybatis框架

(eclipse中進行,先創(chuàng)建一個簡單的Java項目,暫時不創(chuàng)建Java Web項目)




2、在數(shù)據(jù)庫中創(chuàng)建一個寵物表(id,name,color)

--drop table pet

? ? ? ? ? ? ? ? ? ? ? ?

create table pet(

? ? id number primary key,

? ? name varchar2(30) not null,

? ?color varchar2(30) not null

);



--drop sequence seq_pet

create sequence seq_pet

start with 1? ? ? ?--起始值是1

increment by 1? ? ?--增長的值? ?

maxvalue 999999999 --序列號的最大值

minvalue 1? ? ? ? ?--序列號的最小值

nocycle? ? ? ? ? ? --是否循環(huán)

cache 10;? ? ? ? ? --預存



insert into pet values(seq_pet.nextval,'小黑貓','黑色');

insert into pet values(seq_pet.nextval,'小紅魚','紅色');

insert into pet values(seq_pet.nextval,'小藍狗','藍色');


--update pet set name='詩書畫唱的貓',color='紅色' where id=1


--select * from pet

--delete from pet where id=4





3、在數(shù)據(jù)庫中創(chuàng)建一個科目表(id,sname,point)


--科目:subject??

?--drop table subject? ? ? ? ? ? ? ? ??

create table subject(

? ? id number primary key,

? ? name varchar2(30) not null,

? ?point number(4,1)

);

--【number(4,3)是表示 這個數(shù) 一共有4位是有效位,后面的3 表示有3個是小數(shù)

--也就是這個數(shù) 只能是1.234,這樣格式的 最大只能是9.999】


--drop sequence seq_subject

create sequence seq_subject

start with 1? ? ? ?--起始值是1

increment by 1? ? ?--增長的值? ?

maxvalue 999999999 --序列號的最大值

minvalue 1? ? ? ? ?--序列號的最小值

nocycle? ? ? ? ? ? --是否循環(huán)

cache 10;? ? ? ? ? --預存



insert into subject values(seq_subject.nextval,'Java',99.5);

insert into subject values(seq_subject.nextval,'Python',100.0);

insert into subject values(seq_subject.nextval,'C#',97.5);


--select * from subject





4、在數(shù)據(jù)庫中創(chuàng)建一個車類表(cid,cname,cp車牌號,describe描述)

--describe:描述

--drop table car

create table car(

? ? cid number primary key,

? ? cname varchar2(30) not null,

? ?cp varchar2(30) not null,

? ?describe varchar2(30) not null

);



--drop sequence seq_car

create sequence seq_car

start with 1? ? ? ?--起始值是1

increment by 1? ? ?--增長的值? ?

maxvalue 999999999 --序列號的最大值

minvalue 1? ? ? ? ?--序列號的最小值

nocycle? ? ? ? ? ? --是否循環(huán)

cache 10;? ? ? ? ? --預存



insert into car values(seq_car.nextval,'Java牌汽車','瓊A17052','酷車');

insert into car values(seq_car.nextval,'Python牌汽車','贛B17053','帥車');

insert into car values(seq_car.nextval,'C#牌汽車','滬C17054','快車');


--select * from car



5、在mybatis框架中,對上面的三個表進行下面的操作:

selectAll

selectById

add

update

deleteById

要寫三個bean,三個sqlMap.xml文件和一個測試類


package com.SSHC.bean;

/*id number primary key,

? ? name varchar2(30) not null,

? ?color varchar2(30) not null*/

public class Pet {

? ? private Integer id;

? ? private String name;

? ? private String color;

public Integer getId() {

return id;

}

public void setId(Integer id) {

this.id = id;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public String getColor() {

return color;

}

public void setColor(String color) {

this.color = color;

}

? ?


}

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE mapper

? ? PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"??

? ? "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<!-- namespace就是空間名,它必須在整個項目中都是唯一的 -->

<mapper namespace="com.SSHC.dao.PetDao">

? ? <!-- id必須是唯一的 -->

? ? <!-- 創(chuàng)建一個List<Pet>集合,變量名叫rmPet -->

? ? <resultMap type="com.SSHC.bean.Pet" id="rmPet">

? ? ? ? <!-- Pet表的主鍵是id -->

? ? ? ? <!-- property指的是Pet類的屬性名,

? ? ? ? ? ? ?column指的是Pet表的列名 -->

? ? ? ? <!-- u.setId(rs.getInt("ID")) -->

? ? ? ? <id property="id" column="ID" />

? ? ? ? <!-- u.setAct(rs.getInt("ACT")) -->

? ? <result property="name" column="NAMET"/>

? ? <result property="color" column="COLOR"/>

? ?

? ? </resultMap>

? ? <!-- public List<Pet>selectAll() -->

? ? <select id="selectAll" resultMap="rmPet">

? ? ? ? select * from Pet

? ? </select>

? ??

? ? <!-- public Pet selectById(Integer id) -->

? ? <!-- mybatis框架中,占位符?使用#{}來代替 -->

? ? <select id="selectById" resultMap="rmPet">

? ? ? ? select * from Pet where id = #{id}

? ? </select>

? ??

? ? <!-- public Integer add(Pet u) -->

? ? <!-- 因為參數(shù)的類型是Pet,所以占位符中的字符串就必須是對應的屬性名

? ? ? ? ?(屬性名區(qū)分大小寫)

? ? ? ? ?

? ? ? ? ?com.SSHC.bean.Pet傳的是Text文件中賦值給Pet類后傳

? ? ? ? ?過來的類,比較常用和方便 -->

? ? <insert id="add" parameterType="com.SSHC.bean.Pet">

? ? ? ? insert into Pet values(#{id},#{name},#{color})

? ? </insert>

? ? <update id="update" parameterType="com.SSHC.bean.Pet">

? ? ? ? update pet set name=#{name},color=#{color} where id=#{id}

? ? </update>

? ? ?<delete id="deleteById" parameterType="com.SSHC.bean.Pet">

? ? ? ? delete from pet where id=#{id}

? ? </delete>

</mapper>




package Text;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;

import java.util.Scanner;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PetAddTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;








// exePath = "com.SSHC.dao.PetDao.selectAll";

// List<Pet>list = session.selectList(exePath);

// for(Pet u : list) {

// System.out.println(u.getAct());

// }


// exePath = "com.SSHC.dao.PetDao.selectById";

// Pet u = session.selectOne(exePath,8);

// System.out.println(u.getAct());


exePath = "com.SSHC.dao.PetDao.add";

Pet u = new Pet();

u.setId(4);

u.setName("帥哥貓");

u.setColor("紅色");


Integer count = session.insert(exePath,u);

//新增修改和刪除一定記得提交事務

session.commit();

System.out.println(count);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}


package Text;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PetDeleteByIdTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;

// exePath = "com.SSHC.dao.PetDao.selectAll";

// List<Pet>list = session.selectList(exePath);

// for(Pet u : list) {

// System.out.println("編號是"+u.getId()

// +";名字是"+u.getName()

// +";顏色是 "+u.getColor());

// }


// exePath = "com.SSHC.dao.PetDao.selectById";

// Pet u = session.selectOne(exePath,1);

// System.out.println("編號是"+u.getId()

// +";名字是"+u.getName()

// +";顏色是 "+u.getColor());


exePath = "com.SSHC.dao.PetDao.deleteById";

Pet u = new Pet();

u.setId(7);



Integer count = session.update(exePath,u);

// 新增修改和刪除一定記得提交事務


session.commit();

System.out.println(count);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}

package Text;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PetSelectAllTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list = session.selectList(exePath);

for(Pet u : list) {

System.out.println("編號是"+u.getId()

+";名字是"+u.getName()

+";顏色是 "+u.getColor());

}


// exePath = "com.SSHC.dao.PetDao.selectById";

// Pet u = session.selectOne(exePath,8);

// System.out.println(u.getAct());


// exePath = "com.SSHC.dao.PetDao.add";

// Pet u = new Pet();

// u.setId(4);

// u.setName("帥哥貓");

// u.setColor("紅色");

//

// Integer count = session.insert(exePath,u);

//新增修改和刪除一定記得提交事務


// session.commit();

// System.out.println(count);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}

package Text;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PetSelectByIdTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;

// exePath = "com.SSHC.dao.PetDao.selectAll";

// List<Pet>list = session.selectList(exePath);

// for(Pet u : list) {

// System.out.println("編號是"+u.getId()

// +";名字是"+u.getName()

// +";顏色是 "+u.getColor());

// }


exePath = "com.SSHC.dao.PetDao.selectById";

Pet u = session.selectOne(exePath,1);

System.out.println("編號是"+u.getId()

+";名字是"+u.getName()

+";顏色是 "+u.getColor());


// exePath = "com.SSHC.dao.PetDao.add";

// Pet u = new Pet();

// u.setId(4);

// u.setName("帥哥貓");

// u.setColor("紅色");

//

// Integer count = session.insert(exePath,u);

//新增修改和刪除一定記得提交事務


// session.commit();

// System.out.println(count);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}

package Text;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;

import java.util.Scanner;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PetUpdateTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;

while(true){


System.out.print("請選擇操作:1.selectAll "

+ ",2.selectById,"

+ "3.add,"

+ "4.update,"

+ "5.deleteById");

? ?Scanner input = new Scanner(System.in);

? ?int num = input.nextInt();

? ?System.out.println(num);

String IdNow="";



if(num==1){

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list = session.selectList(exePath);

for(Pet u : list) {

System.out.println("編號是"+u.getId()

+";名字是"+u.getName()

+";顏色是 "+u.getColor());

IdNow=IdNow+"? "+u.getId();

}

}

if(num==2){


//查詢所有 START

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list = session.selectList(exePath);

for(Pet u1 : list) {

// System.out.println("編號是"+u1.getId()

// +";名字是"+u1.getName()

// +";顏色是 "+u1.getColor());

IdNow=IdNow+"? "+u1.getId();

}

System.out.print("請選擇現(xiàn)有id:"+IdNow);

? ?Scanner input1 = new Scanner(System.in);

? ?int num1 = input1.nextInt();

// ? ?System.out.println(num1);


//查詢所有 END



exePath = "com.SSHC.dao.PetDao.selectById";

Pet u = session.selectOne(exePath,num1);

System.out.println("編號是"+u.getId()

+";名字是"+u.getName()

+";顏色是 "+u.getColor());

}

if(num==3){

//查詢所有 START

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list = session.selectList(exePath);

for(Pet u1 : list) {

System.out.println("編號是"+u1.getId()

+";名字是"+u1.getName()

+";顏色是 "+u1.getColor());

IdNow=IdNow+"? "+u1.getId();

}



System.out.print("請選擇沒出現(xiàn)的id");

? ?Scanner input1 = new Scanner(System.in);

? ?int num1 = input1.nextInt();

// ? ?System.out.println(num1);

//查詢所有 END


exePath = "com.SSHC.dao.PetDao.add";

Pet u = new Pet();






u.setId(num1);

u.setName("帥哥好貓");

u.setColor("紅色");

Integer count = session.insert(exePath,u);

session.commit();

System.out.println(count);

if(count==1){System.out.println("添加成功!");}

else{System.out.println("添加失??!");}

//查詢所有 START

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list1 = session.selectList(exePath);

for(Pet u1 : list1) {

System.out.println("編號是"+u1.getId()

+";名字是"+u1.getName()

+";顏色是 "+u1.getColor());

IdNow=IdNow+"? "+u1.getId();

}

//查詢所有 END


}


if(num==4){

exePath = "com.SSHC.dao.PetDao.update";

Pet u = new Pet();

u.setId(1);

u.setName("帥哥好貓");

u.setColor("紅色");

Integer count = session.update(exePath,u);

session.commit();

System.out.println(count);

}

if(num==5){


//查詢所有 START

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list = session.selectList(exePath);

for(Pet u1 : list) {

System.out.println("編號是"+u1.getId()

+";名字是"+u1.getName()

+";顏色是 "+u1.getColor());

IdNow=IdNow+"? "+u1.getId();

}

System.out.print("請選擇現(xiàn)有id:"+IdNow);

? ?Scanner input1 = new Scanner(System.in);

? ?int num1 = input1.nextInt();

// ? ?System.out.println(num1);


//查詢所有 END



exePath = "com.SSHC.dao.PetDao.deleteById";

Pet u = new Pet();

u.setId(num1);


Integer count = session.update(exePath,u);

session.commit();

System.out.println(count);


if(count==1){System.out.println("刪除成功!");}

else{System.out.println("刪除失敗!");}

//查詢所有 START

exePath = "com.SSHC.dao.PetDao.selectAll";

List<Pet>list1 = session.selectList(exePath);

for(Pet u1 : list1) {

System.out.println("編號是"+u1.getId()

+";名字是"+u1.getName()

+";顏色是 "+u1.getColor());

IdNow=IdNow+"? "+u1.getId();

}

//查詢所有 END


}

}

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}

package ZSGCText;

import java.io.IOException;

import java.io.Reader;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;


import org.apache.ibatis.io.Resources;

import org.apache.ibatis.session.SqlSession;

import org.apache.ibatis.session.SqlSessionFactory;

import org.apache.ibatis.session.SqlSessionFactoryBuilder;


import com.SSHC.bean.Pet;



public class PeZSGCTest {


public static void main(String[] args) {


//獲取主配置文件的路徑

String path = "mybatis.xml";

//讀取mybatis.xml中的配置信息,就是讀取四大連接字符串的內容

Reader config;

try {

config = Resources.getResourceAsReader(path);

SqlSessionFactory factory =?

new SqlSessionFactoryBuilder().build(config);

//數(shù)據(jù)庫的操作對象session

SqlSession session = factory.openSession();

//調用selectAll

//執(zhí)行路徑就是映射文件的namespace屬性+'.'+id

String exePath = null;

// exePath = "com.SSHC.dao.PetDao.selectAll";

// List<Pet>list = session.selectList(exePath);

// for(Pet u : list) {

// System.out.println("編號是"+u.getId()

// +";名字是"+u.getName()

// +";顏色是 "+u.getColor());

// }


// exePath = "com.SSHC.dao.PetDao.selectById";

// Pet u = session.selectOne(exePath,1);

// System.out.println("編號是"+u.getId()

// +";名字是"+u.getName()

// +";顏色是 "+u.getColor());


exePath = "com.SSHC.dao.PetDao.update";

Pet u = new Pet();

u.setId(1);

u.setName("帥哥好貓");

u.setColor("紅色");


Integer count = session.update(exePath,u);

// 新增修改和刪除一定記得提交事務


session.commit();

System.out.println(count);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


}


<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"??

? ? "http://mybatis.org/dtd/mybatis-3-config.dtd">

<configuration>? ?

? ? <environments default="oracleConf">? ? ? ? ? ? ? ? ?

? ? ? ? <!-- oracle配置 -->?

? ? ? ? <environment id="oracleConf">??

? ? ? ? ? ? <transactionManager type="JDBC">?

? ? ? ? ? ? ? ? <property name="closeConnection" value="false"/>

? ? ? ? ? ? </transactionManager>?

? ? ? ? ? ? <!-- 配置數(shù)據(jù)源 -->? ? ? ?

? ? ? ? ? ? <dataSource type="POOLED">

? ? ? ? ? ? ? ? <property name="driver" value="oracle.jdbc.driver.OracleDriver"/>? ?

? ? ? ? ? ? ? ? <property name="url" value="jdbc:oracle:thin:@localhost:1521:orcl"/>?

? ? ? ? ? ? ? ? <property name="username" value="X"/>?

? ? ? ? ? ? ? ? <property name="password" value="sshcPwd"/>??

? ? ? ? ? ? </dataSource>? ??

? ? ? ? </environment>

? ? </environments>?

? ? <!-- 實體映射文件集合 -->?

? ? <mappers>

? ? ? ? <mapper resource="com/SSHC/bean/PetSqlMap.xml"/>

? ? </mappers>

</configuration>




作業(yè) END


Oracle作業(yè):JDBC連接數(shù)據(jù)庫增刪改查,搭建一個Mybatis框架,創(chuàng)建一個表【詩書畫唱】的評論 (共 條)

分享到微博請遵守國家法律
阜康市| 灯塔市| 会昌县| 仁寿县| 瑞昌市| 东山县| 上饶县| 荆门市| 宁蒗| 凤冈县| 色达县| 贺州市| 开平市| 南昌市| 苏尼特左旗| 军事| 彭山县| 长子县| 花莲市| 广汉市| 六安市| 融水| 惠东县| 石楼县| 仁布县| 茌平县| 马公市| 无锡市| 新平| 滕州市| 和田县| 潜山县| 广河县| 祁门县| 安徽省| 信宜市| 宜君县| 翁牛特旗| 南乐县| 雷波县| 佛教|