BLOB和CLOB的區別以及在ORALCE中的插入和查詢操作
ORACLE中的大物件:
LONG: 可變長的字串資料,最長2G,LONG具有VARCHAR2列的特性,可以儲存長文字一個表中最多一個LONG列
LONG RAW: 可變長二進位制資料,最長2G
CLOB: 字元大物件Clob 用來儲存單位元組的字元資料
NCLOB: 用來儲存多位元組的字元資料
BLOB: 用於儲存二進位制資料
BFILE: 儲存在檔案中的二進位制資料,這個檔案中的資料只能被只讀訪。但該檔案不包含在資料庫內。bfile欄位實際的檔案儲存在檔案系統中,欄位中儲存的是檔案定位指標.bfile對oracle來說是隻讀的,也不參與事務性控制和資料恢復.
CLOB,NCLOB,BLOB都是內部的LOB(Large Object)型別,最長4G,沒有LONG只能有一列的限制。
要儲存圖片、文字檔案、Word檔案各自最好用哪種資料型別?
--BLOB最好,LONG RAW也不錯,但Long是oracle將要廢棄的型別,因此建議用BLOB。
對CLOB與BLOB物件的操作
1. 查詢(GET)
查詢CLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//不需要“for update”
ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1");
if (rs.next())
{
java.sql.Clob clob = rs.getClob("CLOBATTR");
Reader inStream = clob.getCharacterStream();
char[] c = new char[(int) clob.length()];
inStream.read(c);
//data是讀出並需要返回的資料,型別是String
data = new String(c);
inStream.close();
}
inStream.close();
con.commit();
con.close();
查詢BLOB
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//不需要“for update”
ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1");
if (rs.next())
{
java.sql.Blob blob = rs.getBlob("BLOBATTR");
InputStream inStream = blob.getBinaryStream();
//data是讀出並需要返回的資料,型別是byte[]
data = new byte[input.available()];
inStream.read(data);
inStream.close();
}
inStream.close();
con.commit();
con.close();
2. 插入(INSERT)
插入CLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//插入一個空物件empty_clob()
st.executeUpdate("insert into TESTCLOB (ID, NAME, CLOBATTR) values (1, "thename", empty_clob())");
//鎖定資料行進行更新,注意“for update”語句
ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1 for update");
if (rs.next())
{
//得到java.sql.Clob物件後強制轉換為oracle.sql.CLOB
oracle.sql.CLOB clob = (oracle.sql.CLOB) rs.getClob("CLOBATTR");
Writer outStream = clob.getCharacterOutputStream();
//data是傳入的字串,定義:String data
char[] c = data.toCharArray();
outStream.write(c, 0, c.length);
}
outStream.flush();
outStream.close();
con.commit();
con.close();
插入BLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//插入一個空物件empty_blob()
st.executeUpdate("insert into TESTBLOB (ID, NAME, BLOBATTR) values (1, "thename", empty_blob())");
//鎖定資料行進行更新,注意“for update”語句
ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1 for update");
if (rs.next())
{
//得到java.sql.Blob物件後強制轉換為oracle.sql.BLOB
oracle.sql.BLOB blob = (oracle.sql.BLOB) rs.getBlob("BLOBATTR");
OutputStream outStream = blob.getBinaryOutputStream();
//data是傳入的byte陣列,定義:byte[] data
outStream.write(data, 0, data.length);
}
outStream.flush();
outStream.close();
con.commit();
con.close();
Hibernate儲存BLOB物件
public void addMessage(Messages message,String content_str) {
Session session = this.getSession();
message.setContent(Hibernate.createBlob(new byte[1]));
session.save(message);
session.flush();
session.refresh(message, LockMode.UPGRADE);
SerializableBlob sb = (SerializableBlob)message.getContent();
BLOB blob = (BLOB)sb.getWrappedBlob();
try {
OutputStream out = blob.getBinaryOutputStream();
out.write(content_str.getBytes());
out.close();
session.save(message);
} catch (Exception e) {
e.printStackTrace();
}
}
hibernate.xml設定
<property name="photo" type="java.sql.Blob">
<column name="PHOTO" />
</property>
LONG: 可變長的字串資料,最長2G,LONG具有VARCHAR2列的特性,可以儲存長文字一個表中最多一個LONG列
LONG RAW: 可變長二進位制資料,最長2G
CLOB: 字元大物件Clob 用來儲存單位元組的字元資料
NCLOB: 用來儲存多位元組的字元資料
BLOB: 用於儲存二進位制資料
BFILE: 儲存在檔案中的二進位制資料,這個檔案中的資料只能被只讀訪。但該檔案不包含在資料庫內。bfile欄位實際的檔案儲存在檔案系統中,欄位中儲存的是檔案定位指標.bfile對oracle來說是隻讀的,也不參與事務性控制和資料恢復.
CLOB,NCLOB,BLOB都是內部的LOB(Large Object)型別,最長4G,沒有LONG只能有一列的限制。
要儲存圖片、文字檔案、Word檔案各自最好用哪種資料型別?
--BLOB最好,LONG RAW也不錯,但Long是oracle將要廢棄的型別,因此建議用BLOB。
對CLOB與BLOB物件的操作
1. 查詢(GET)
查詢CLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//不需要“for update”
ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1");
if (rs.next())
{
java.sql.Clob clob = rs.getClob("CLOBATTR");
Reader inStream = clob.getCharacterStream();
char[] c = new char[(int) clob.length()];
inStream.read(c);
//data是讀出並需要返回的資料,型別是String
data = new String(c);
inStream.close();
}
inStream.close();
con.commit();
con.close();
查詢BLOB
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//不需要“for update”
ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1");
if (rs.next())
{
java.sql.Blob blob = rs.getBlob("BLOBATTR");
InputStream inStream = blob.getBinaryStream();
//data是讀出並需要返回的資料,型別是byte[]
data = new byte[input.available()];
inStream.read(data);
inStream.close();
}
inStream.close();
con.commit();
con.close();
2. 插入(INSERT)
插入CLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//插入一個空物件empty_clob()
st.executeUpdate("insert into TESTCLOB (ID, NAME, CLOBATTR) values (1, "thename", empty_clob())");
//鎖定資料行進行更新,注意“for update”語句
ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1 for update");
if (rs.next())
{
//得到java.sql.Clob物件後強制轉換為oracle.sql.CLOB
oracle.sql.CLOB clob = (oracle.sql.CLOB) rs.getClob("CLOBATTR");
Writer outStream = clob.getCharacterOutputStream();
//data是傳入的字串,定義:String data
char[] c = data.toCharArray();
outStream.write(c, 0, c.length);
}
outStream.flush();
outStream.close();
con.commit();
con.close();
插入BLOB
//獲得資料庫連線
Connection con = ConnectionFactory.getConnection();
con.setAutoCommit(false);
Statement st = con.createStatement();
//插入一個空物件empty_blob()
st.executeUpdate("insert into TESTBLOB (ID, NAME, BLOBATTR) values (1, "thename", empty_blob())");
//鎖定資料行進行更新,注意“for update”語句
ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1 for update");
if (rs.next())
{
//得到java.sql.Blob物件後強制轉換為oracle.sql.BLOB
oracle.sql.BLOB blob = (oracle.sql.BLOB) rs.getBlob("BLOBATTR");
OutputStream outStream = blob.getBinaryOutputStream();
//data是傳入的byte陣列,定義:byte[] data
outStream.write(data, 0, data.length);
}
outStream.flush();
outStream.close();
con.commit();
con.close();
Hibernate儲存BLOB物件
public void addMessage(Messages message,String content_str) {
Session session = this.getSession();
message.setContent(Hibernate.createBlob(new byte[1]));
session.save(message);
session.flush();
session.refresh(message, LockMode.UPGRADE);
SerializableBlob sb = (SerializableBlob)message.getContent();
BLOB blob = (BLOB)sb.getWrappedBlob();
try {
OutputStream out = blob.getBinaryOutputStream();
out.write(content_str.getBytes());
out.close();
session.save(message);
} catch (Exception e) {
e.printStackTrace();
}
}
hibernate.xml設定
<property name="photo" type="java.sql.Blob">
<column name="PHOTO" />
</property>
相關文章
- 關於Oracle的BLOB和CLOBOracle
- mysqPoint型別查詢和插入操作:insert和select型別
- 物件點查詢和中括號查詢的區別物件
- JDBC 處理CLob和Blob型別資料JDBC型別
- 插入單引號在oracle和informix中的區別OracleORM
- 在Pandas中 SQL操作:SQLAlchemy和PyMySQL的區別MySql
- 插入查詢資料的操作
- js中==和===的區別以及總結JS
- Oracle 中LONG RAW BLOB CLOB型別介紹Oracle型別
- 用JDBC操縱BLOB和CLOB資料JDBC
- 在java中“equals”和“==”的區別Java
- 在關聯子查詢中in與exists的區別
- Android中 @和?區別以及?attr/**與@style/**等的區別Android
- 如何檢視ORACLE的LOB(BLOB和CLOB)物件佔用的大小Oracle物件
- SQVI和SAP查詢QUERY的區別和使用注意事項
- PHP 中`Closure`和`Callable`的區別以及在 Redis 訂閱方法中的使用PHPRedis
- CLOB與BLOB的轉換
- Elasticsearch中的Term查詢和全文查詢Elasticsearch
- Firedac 在資料表中插入BLOB資料的方法
- 如何在Clob欄位中查詢
- ORACLE Temporary Tables臨時表更適合做插入和查詢操作Oracle
- 在xpath中text()和string(.)的區別
- 在Oracle中session和process的區別(轉)OracleSession
- 介面和列舉在方法中的區別
- MYSQL查詢和插入資料的流程是怎樣的MySql
- 子查詢中的IN與EXISTS的區別(轉)
- C語言程式的內在分配:堆和棧以及char a[]和char*的區別C語言
- 子查詢中all與any的區別
- clob 欄位查詢
- mysql中!=和is not的區別MySql
- JavaScript中for in 和for of的區別JavaScript
- mysql中“ ‘ “和 “ ` “的區別MySql
- Js中for in 和for of的區別JS
- JavaScript中==和===的區別JavaScript
- ==和is的區別 以及編碼和解碼
- mybatis collection解析以及和association的區別MyBatis
- PHP 中的 -> 和 :: 的區別PHP
- MySQL中TEXT與BLOB欄位型別的區別MySql型別