bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

JDBC(JavaDataBaseConnectivity)

1.JDBC快速入門

一、JDBC(Java Data Base Connectivity)

從事成都天府聯(lián)通服務(wù)器托管,服務(wù)器租用,云主機(jī),虛擬空間,空間域名,CDN,網(wǎng)絡(luò)代維等服務(wù)。

1、數(shù)據(jù)庫驅(qū)動:

數(shù)據(jù)庫廠商為了方便開發(fā)人員從程序中操作數(shù)據(jù)庫而提供的一套jar包,通過導(dǎo)入這個jar包就可以調(diào)用其中的方法操作數(shù)據(jù)庫,這樣的jar包就叫做數(shù)據(jù)庫驅(qū)動

2、JDBC:

sun定義的一套標(biāo)準(zhǔn),本質(zhì)上是一大堆的操作數(shù)據(jù)庫的接口,所有數(shù)據(jù)庫廠商為java設(shè)計的數(shù)據(jù)庫驅(qū)動都實現(xiàn)過這套接口,這樣一來,統(tǒng)一了不同數(shù)據(jù)庫驅(qū)動的方法,開發(fā)人員只需要學(xué)習(xí)JDBC就會使用任意數(shù)據(jù)庫驅(qū)動了。

 

六個步驟實現(xiàn)JDBC:

//1.注冊數(shù)據(jù)庫驅(qū)動

--由于MySQL在Driver類的實現(xiàn)中自己注冊了一次,而我們又注冊了一次,于是會導(dǎo)致MySql驅(qū)動被注冊兩次。

--創(chuàng)建MySql的Driver對象時,導(dǎo)致了程序和具體的Mysql驅(qū)動綁死在了一起,在切換數(shù)據(jù)庫時需要改動java代碼。

//DriverManager.registerDriver(new Driver());

Class.forName("com.mysql.jdbc.Driver");

//2.從客戶端發(fā)出一個和數(shù)據(jù)庫服務(wù)端的連接,url=哪臺主機(jī)哪個端口哪個數(shù)據(jù)庫

Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/day10", "root", "root");

//3.獲取傳輸器對象。連接=路;傳輸器=卡車,載數(shù)據(jù)。

Statement stat = conn.createStatement();

//4.利用傳輸器傳輸sql語句到數(shù)據(jù)庫中執(zhí)行,獲取結(jié)果集對象

ResultSet rs = stat.executeQuery("select * from user");

//5.遍歷結(jié)果集獲取查詢結(jié)果

//有一個小游標(biāo)一行一行的指向結(jié)果集,最后一行沒東西了返回false

//ResultSet用于代表Sql語句的執(zhí)行結(jié)果。封裝執(zhí)行結(jié)果采用的類似于表格的方式。ResultSet對象維護(hù)了一個指向表格數(shù)據(jù)行的游標(biāo),初始的時候,游標(biāo)在第一行之前,第一次調(diào)用ResultSet.next()方法,游標(biāo)指向第一行數(shù)據(jù),再次調(diào)用ResultSet.next()方法,指向下一行,也就是第二行數(shù)據(jù)。

while(rs.next()){ String name = rs.getString("name");

System.out.println(name);

}

//6.關(guān)閉資源

rs.close();

stat.close();

conn.close();

 

2.JDBC細(xì)節(jié)

Connection對象,它是非常稀有的資源,用完后必須馬上釋放,如果Connection不能及時、正確的關(guān)閉,極易導(dǎo)致系統(tǒng)宕機(jī)。

為確保資源釋放代碼能運(yùn)行,資源釋放代碼也一定要放在finally語句中。

 Connection conn = null;

     Statement stat = null;

     ResultSet rs = null;

     try{...... .......

      }catch (Exception e) {

           e.printStackTrace();

       }finally{

//6.關(guān)閉資源

    if(rs!=null){

        try {

            rs.close();

        } catch (SQLException e) {

            e.printStackTrace();

        }finally{

            rs = null;

        }

    }

    if(stat!=null){

        try {

            stat.close();

        } catch (SQLException e) {

            e.printStackTrace();

        }finally{

            stat = null;

        }

    }

    if(conn!=null){

        try {

            conn.close();

        } catch (SQLException e) {

            e.printStackTrace();

        }finally{

            conn = null;

        }

    }

  }

3.JDBC增刪改查

config.properties

driver=com.mysql.jdbc.Driver

url=jdbc:mysql:///day10

user=root

password=root

 

JDBCUtils.java

 public class JDBCUtils {

      private staticProperties prop = null;

          private JDBCUtils() {

            }

    static{

     try{

        prop = new Properties();

        prop.load(new                             FileReader(JDBCUtils.class.getClassLoader().getResource("config.properties").getPath()));

     }catch (Exception e) {

        e.printStackTrace();

        throw new RuntimeException(e);

     }

    }

    //連接

        public static ConnectiongetConn()throws ClassNotFoundException, SQLException{

    // 1.注冊數(shù)據(jù)庫驅(qū)動

        Class.forName(prop.getProperty("driver"));

    // 2.獲取連接

        return DriverManager.getConnection(prop.getProperty("url"), prop.getProperty("user"),     prop.getProperty("password"));

    //關(guān)閉

        public static voidclose(ResultSet rs, Statement stat,Connection conn)  {.......}

 

JDBCDemo2.java

@Test

    public void update() {

        Connection conn = null;

        Statement stat = null;

        try{

            conn = JDBCUtils.getConn();

            stat =  conn.createStatement();

            stat.executeUpdate("update user set password=999 where name='zhaoliu'");

        }catch (Exception e) {

            e.printStackTrace();

        }finally{

            JDBCUtils.close(null, stat, conn);

        }

    }

 

4.改造User案例

層與層耦合的概念,利用工廠類解耦,service如何用dao?DaoFactory.getFactory().getDao();

 public class DaoFactory {

    private staticDaoFactory factory = new DaoFactory();

    private staticProperties prop = null;

    static{   try{

    prop = new Properties();

    prop.load(new     FileReader(DaoFactory.class.getClassLoader().getResource("config.properties").getPath()));

    }catch (Exception e) { e.printStackTrace();

       throw new RuntimeException(e);  }  }

     

    privateDaoFactory(){   }

     

    public staticDaoFactorygetFactory(){

        return factory; }

     

    public UserDaogetDao(){

    try{

        String clazz = prop.getProperty("UserDao");

        return  (UserDao) Class.forName(clazz).newInstance();

    }catch (Exception e) {  e.printStackTrace();

        throw new RuntimeException(e); }  }  }

5.PreparedStatement防止sql注入

SQL注入***:

由于dao中執(zhí)行的SQL語句是拼接出來的,其中有一部分內(nèi)容是由用戶從客戶端傳入,所以當(dāng)用戶傳入的數(shù)據(jù)中包含sql關(guān)鍵字時,就有可能通過這些關(guān)鍵字改變sql語句的語義,從而執(zhí)行一些特殊的操作,這樣的***方式就叫做sql注入***

PreparedStatement:

利用預(yù)編譯的機(jī)制將sql語句的主干和參數(shù)分別傳輸給數(shù)據(jù)庫服務(wù)器,從而使數(shù)據(jù)庫分辨的出哪些是sql語句的主干哪些是參數(shù),這樣一來即使參數(shù)中帶了sql的關(guān)鍵字,數(shù)據(jù)庫服務(wù)器也僅僅將他當(dāng)作參數(shù)值使用,關(guān)鍵字不會起作用,從而從原理上防止了sql注入的問題

 

PreparedStatement主要有如下的三個優(yōu)點:

1.可以防止sql注入

2.由于使用了預(yù)編譯機(jī)制,執(zhí)行的效率要高于Statement

3.sql語句使用?形式替代參數(shù),然后再用方法設(shè)置?的值,比起拼接字符串,代碼更加優(yōu)雅.

6.大文本大二進(jìn)制

數(shù)據(jù)庫中存儲的是大數(shù)據(jù)的路徑,大數(shù)據(jù)存在硬盤上,從數(shù)據(jù)庫讀大數(shù)據(jù)費時費力。

了解即可

*JDBC大數(shù)據(jù)

Text Blob

 

1.1設(shè)置Text類型

 PreparedStatement.setCharacterStream(index, reader, length);

 //注意length長度須設(shè)置,并且設(shè)置為int型

 //當(dāng)包過大時修改配置:[mysqld] max_allowed_packet=64M

1.2獲取Text類型

reader = resultSet. getCharacterStream(i);

2.1設(shè)置BLOB數(shù)據(jù)類型

PreparedStatement. setBinaryStream(i, inputStream, length);

2.1獲取BLOB類型

InputStream in  = resultSet.getBinaryStream(i);

InputStream in  = resultSet.getBlob(i).getBinaryStream();

 

public class BlobDemo1 {

@Test

public void findBlob(){

    Connection conn = null;

        PreparedStatement ps = null;

        ResultSet rs = null;

try{

conn = JDBCUtils.getConn();

ps = conn.prepareStatement("select * from blobdemo");

rs = ps.executeQuery();

 while(rs.next()){

    String name = rs.getString("name");

     InputStream in = rs.getBinaryStream("content");

     OutputStream out = new FileOutputStream(name);

    

    byte [] bs = new byte[1024];

    int i = 0;

    while((i=in.read(bs))!=-1){

    out.write(bs,0,i);

    }

    in.close();

    out.close();

    }

    }catch (Exception e) {

    e.printStackTrace();

    }finally{

    JDBCUtils.close(rs, ps, conn);

    }

}

@Test

public void addBlob(){

Connection conn = null;

PreparedStatement ps = null;

ResultSet rs = null;

try{

    conn = JDBCUtils.getConn();

    ps = conn.prepareStatement("insert into blobdemo values (null,?,?)");

    ps.setString(1, "洛天依.mp3");

    File file = new File("1.mp3");

    ps.setBinaryStream(2, new FileInputStream(file),(int)file.length());

    ps.executeUpdate();

}catch (Exception e) {

    e.printStackTrace();

}finally{

    JDBCUtils.close(rs, ps, conn);

}

}

}

 

 

7.批處理機(jī)制

業(yè)務(wù)場景:當(dāng)需要向數(shù)據(jù)庫發(fā)送一批SQL語句執(zhí)行時,應(yīng)避免向數(shù)據(jù)庫一條條的發(fā)送執(zhí)行,而應(yīng)采用JDBC的批處理機(jī)制,以提升執(zhí)行效率。

實現(xiàn)批處理有兩種方式,第一種方式:

Statement.addBatch(sql) 執(zhí)行批處理SQL語句

executeBatch()方法:執(zhí)行批處理命令

clearBatch()方法:清除批處理命令

    Connection conn = null;

    Statement st = null;

    ResultSet rs = null;

    try {

    conn = JdbcUtil.getConnection();

    String sql1 = "insert into person(name,password,email,birthday)

    values('kkk','123','abc@sina.com','1978-08-08')";

    String sql2 = "update user set password='123456' where id=3";

    st = conn.createStatement();

    st.addBatch(sql1);  //把SQL語句加入到批命令中

    st.addBatch(sql2);  //把SQL語句加入到批命令中

    st.executeBatch();

    } finally{

    JdbcUtil.free(conn, st, rs);

    }

采用Statement.addBatch(sql)方式實現(xiàn)批處理:

優(yōu)點:可以向數(shù)據(jù)庫發(fā)送多條不同的SQL語句。

缺點:

SQL語句沒有預(yù)編譯。

當(dāng)向數(shù)據(jù)庫發(fā)送多條語句相同,但僅參數(shù)不同的SQL語句時,需重復(fù)寫上很多條SQL語句。

 

 

實現(xiàn)批處理的第二種方式:

PreparedStatement.addBatch()

conn = JdbcUtil.getConnection();

String sql = "insert into person(name,password,email,birthday) values(?,?,?,?)";

st = conn.prepareStatement(sql);

for(int i=0;i<50000;i++){

st.setString(1, "aaa" + i);

st.setString(2, "123" + i);

st.setString(3, "aaa" + i + "@sina.com");

st.setDate(4,new Date(1980, 10, 10));

 

st.addBatch();

if(i%1000==0){

st.executeBatch();

st.clearBatch();

}

}

st.executeBatch();


    采用PreparedStatement.addBatch()實現(xiàn)批處理

    優(yōu)點:發(fā)送的是預(yù)編譯后的SQL語句,執(zhí)行效率高。

    缺點:只能應(yīng)用在SQL語句相同,但參數(shù)不同的批處理中。因此此種形式的批處理經(jīng)常用于在同一個表中批量插入數(shù)據(jù),或批量更新表的數(shù)據(jù)。

分享文章:JDBC(JavaDataBaseConnectivity)
網(wǎng)站網(wǎng)址:http://vcdvsql.cn/article26/peggcg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序域名注冊品牌網(wǎng)站設(shè)計網(wǎng)站制作網(wǎng)站收錄網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化