程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> JDBC 2.0中的高級數據類型

JDBC 2.0中的高級數據類型

編輯:關於JAVA

JDBC 2.0中提供了對SQL3標准中引入的新的數據類型,如Blob(binary large object)、Clob(character large object)、Array 對象、REF(對象參考,object reference)和 UDT(用戶定義數據類型,user-defined datatype)等的支持。這些新的數據類型結合在一起,使得數據庫設計人員可以創建更豐富的模式,並簡化了對復雜數據的處理和持久化。

例如,我們要向tbl_User表中插入用戶的照片,這時就可以使用流將Blob對象導入數據庫中:

String sql = "intsert into tbl_User values(?, ?)";
PreparedStatement pstmt = con.prepareStatement(sql) ;
File file = new File("C:/images/photo.jpg") ;
FileInputStream fis = new FileInputStream(file);
pstmt.setString(1, "John");
pstmt.setBinaryStream(2, fis, (int)file.length());
pstmt.executeUpdate();
pstmt.close();
fis.close();

其中SQL語句的第一個參數為用戶名,第二個參數為photo,它是一個Blob型對象。這樣在將數據插入數據庫之後,我們就可以用程序獲取該數據了:

String sql = "select photo from tbl_User where username = ?";
PreparedStatement pstmt = con.prepareStatement(selectSQL) ;
pstmt.setString(1, "John");
ResultSet rs = pstmt.executeQuery() ;
rs.next();
Blob blob = rs.getBlob("photo") ;
ImageIcon icon = new ImageIcon(blob.getBytes(1, (int)blob.length())) ;
JLabel photo = new JLabel(icon);
rs.close();
pstmt.close();

類似地,我們也可以對Clob對象進行相應的操作。下面是一個從 ASCII 流中直接將 Clob對象插入數據庫中的例子:

String sql = "insert into tbl_Articles values(?,?)";
PreparedStatement pstmt = con.prepareStatement(sql) ;
File file = new File("C:/data/news.txt") ;
FileInputStream fis = new FileInputStream(file);
pstmt.setString(1, "Iraq War");
pstmt.setAsciiStream(2, fis, (int)file.length());
pstmt.executeUpdate();
pstmt.close();
fis.close();

同樣,我們也可以用類似的方法將Clob對象從數據庫中取出:

String sql = "select content from tbl_Articles where title = ?";
PreparedStatement pstmt = con.prepareStatement(sql) ;
pstmt.setString(1, "Iraq War");
ResultSet rs = pstmt.executeQuery() ;
rs.next() ;
Clob clob = rs.getClob("content") ;
InputStreamReader in = new InputStreamReader(clob.getAsciiStream()) ;
JTextArea text = new JTextArea(readString(in)) ;
rs.close();
pstmt.close();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved