mysql中clob和blob的區別是什麼

2022-06-15 18:00:26

mysql中clob和blob的區別:1、含義不同,clob指代的是字元大物件,而blob指代的是二進位制大物件;2、作用不同,clob在資料庫中通常用來儲存大量的文字資料,即儲存字元資料,而blob用於儲存二進位制資料或檔案,常常為圖片或音訊。

本教學操作環境:windows7系統、mysql8版本、Dell G3電腦。

MySQL中的blob和clob的區別

1、含義不同

clob英文全稱:Character Large Object(字元大物件)

blob其全稱:binary large object(二進位制大物件)

估計由英文名就能想到他們的作用,所以我們記東西的時候要聯想記憶,不能全靠死記硬背。

2、作用不同

clob在資料庫中通常用來儲存大量的文字資料,即儲存字元資料。

blob用於儲存二進位制資料或檔案,常常為圖片或音訊。

MySQL中的blob和clob的詳解範例

clob

clob用於儲存大量的文字資料。大欄位的操作常常以流的方式處理。

相關型別如下:

型別最大大小
TinyText 255位元組
Text 65535位元組(約65K)
MediumText 16 777 215位元組(約16M)
LongText 4 294 967 295 (約4G)

建立person表

CREATE TABLE person (
  name varchar(20),
  address text
);

插入資料

import java.io.File;
import java.io.FileReader;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
 
public class clob {
	/**
	 * @param args
	 */
	//驅動程式就是之前在classpath中設定的JDBC的驅動程式的JAR 包中
	public static final String DBDRIVER = "com.mysql.jdbc.Driver";
	//連線地址是由各個資料庫生產商單獨提供的,所以需要單獨記住
	public static final String DBURL = "jdbc:mysql://192.168.0.4:3306/myDB";
	//連線資料庫的使用者名稱
	public static final String DBUSER = "root";
	//連線資料庫的密碼
	public static final String DBPASS = "";
	
	public static void main(String[] args) throws Exception {
		Connection con = null; 
		PreparedStatement stmt = null;
		try {
			//1、載入資料庫驅動程式
			Class.forName(DBDRIVER); 
			//2、連線資料庫
			con = DriverManager.getConnection(DBURL,DBUSER,DBPASS); 
			//3、建立Statement 
			stmt = con.prepareStatement("insert into person(name,address) values(?,?)");			
			stmt.setString(1,"April");
			stmt.setClob(2, new FileReader(new File("D:\\work\\info.txt")));        			
			//4、執行SQL語句
			stmt.executeUpdate();	
		}catch(SQLException e) {
			//5、例外處理
		}
		finally {
			//6、清理資源
			if(con !=null)
			{
				con.close(); 
			}
			if(stmt!=null)
			{
				stmt.close();
			}
		}				
	}
}

寫入也可以使用語句

stmt.setClob(2, new BufferedReader(new InputStreamReader(new ByteArrayInputStream("四川省成都市高新區".getBytes()))));

執行結果

1.png

讀取資料

stmt = con.prepareStatement("select * from person");
rs = stmt.executeQuery();
while(rs.next())
{
	Clob address = rs.getClob("address"); 
	Reader reader = address.getCharacterStream(); 			
	int temp = 0;
	while((temp = reader.read()) != -1)  
	{
		System.out.print((char)temp);
	}
	reader.close();
}

執行結果

四川省成都市高新區
浙江省杭州市西湖區

blob

blob用於儲存二進位制資料,常常為圖片或音訊。

相關型別如下:

型別最大大小
TinyBlob 255位元組
Blob 65535位元組(約65K)
MediumBlob 16 777 215位元組(約16M)
LongBlob 4 294 967 295 (約4G)

建立student表

CREATE TABLE student (
  name varchar(20),
  image blob
);

插入資料

stmt = con.prepareStatement("insert into student(name,image) values(?,?)");			
stmt.setString(1,"April");
stmt.setBlob(2, new FileInputStream("D:\\work\\April.png"));
stmt.executeUpdate();

讀取資料

stmt = con.prepareStatement("select * from student");
rs = stmt.executeQuery();
while(rs.next())
{
	Blob image = rs.getBlob("image"); 
	InputStream in = image.getBinaryStream(); 
	OutputStream out = new FileOutputStream("D:\\work\\Harris.png");
	int temp = 0;
	while((temp = in.read()) != -1)  
	{
		out.write(temp);
	}
	in.close();
	out.close();
}

【相關推薦:】

以上就是mysql中clob和blob的區別是什麼的詳細內容,更多請關注TW511.COM其它相關文章!