BLOB は、最大長 65535 文字の可変量のデータを保持できるバイナリ ラージ オブジェクトです。
画像やその他の種類のデータなど、大量のバイナリ データを保存するために使用されます。書類。 TEXT として定義されたフィールドにも大量のデータが保持されます。 2 つの違いは、格納されたデータの並べ替えと比較では、BLOB では大文字と小文字が区別されますが、TEXT フィールドでは大文字と小文字が区別されないことです。 BLOB または TEXT を使用して長さを指定しませんでした。
Blob データ型をデータベースに保存するには、JDBC プログラムを使用して次の手順に従います
ステップ 1: データベースに接続するMySQL URL (jdbc:mysql:) を渡すことで、DriverManagergetConnection()
メソッドを使用してデータベースに接続できます。 //localhost /sampleDB) (exampleDB はデータベース名)、ユーザー名とパスワードを getConnection() メソッドのパラメーターとして使用します。
String mysqlUrl = "jdbc:mysql://localhost/sampleDB"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password");
ステップ 2: プリペアド ステートメントを作成する
Connection インターフェイスの prepareStatement() メソッドを使用して、プリペアド ステートメントを作成します。 PreparedStatement オブジェクト。挿入クエリ (プレースホルダー付き) をパラメーターとしてこのメソッドに渡します。
PreparedStatement pstmt = con.prepareStatement("INSERT INTO MyTableVALUES(?, ?)");
ステップ 3: プレースホルダーの値を設定する
PreparedStatement インターフェイスの setter メソッドを使用して、プレースホルダーに値を設定します。列のデータ型に基づいてメソッドを選択します。たとえば、列の型が VARCHAR の場合は setString() メソッドを使用し、列の型が INT の場合は setInt() メソッドを使用できます。
列の型が Blob の場合は、setBinaryStream() メソッドまたは setBlob() メソッドを使用して値を設定できます。これらのメソッドには、パラメーター インデックスを表す整数変数と、InputStream クラスのオブジェクトがパラメーターとして渡されます。
pstmt.setString(1, "sample image"); //Inserting Blob type InputStream in = new FileInputStream("E:\images\cat.jpg"); pstmt.setBlob(2, in);
ステップ 4: ステートメントを実行します。
PreparedStatement インターフェイスの execute() メソッドを使用して、オブジェクトの上に作成された PreparedStatement。
ResultSet インターフェイスの getBlob() メソッドは、列のインデックスを表す整数 (または列名を表す文字列値) を受け入れ、その値を取得します。指定された列の値が返され、Blob オブジェクトとして返されます。
while(rs.next()) { rs.getString("Name"); rs.getString("Type"); Blob blob = rs.getBlob("Logo"); }
Blob インターフェイスの getBytes() メソッドは、現在の Blob オブジェクトの内容を取得し、バイト配列として返します。 p>
getBlob() メソッドを使用すると、BLOB の内容をバイト配列に取得し、write() メソッドを使用してイメージを作成できます。 FileOutputStream オブジェクト。
byte byteArray[] = blob.getBytes(1,(int)blob.length()); FileOutputStream outPutStream = new FileOutputStream("path"); outPutStream.write(byteArray);
import java.io.FileInputStream; import java.io.FileOutputStream; import java.sql.Blob; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Statement; public class BlobExample { public static void main(String args[]) throws Exception { //Registering the Driver DriverManager.registerDriver(new com.mysql.jdbc.Driver()); //Getting the connection String mysqlUrl = "jdbc:mysql://localhost/sampleDB"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password"); System.out.println("Connection established......"); //Creating a table Statement stmt = con.createStatement(); stmt.execute("CREATE TABLE SampleTable( Name VARCHAR(255), Image BLOB)"); System.out.println("Table Created"); //Inserting values String query = "INSERT INTO SampleTable(Name,image) VALUES (?, ?)"; PreparedStatement pstmt = con.prepareStatement(query); pstmt.setString(1, "sample image"); FileInputStream fin = new FileInputStream("E:\images\cat.jpg"); pstmt.setBlob(2, fin); pstmt.execute(); //Retrieving the data ResultSet rs = stmt.executeQuery("select * from SampleTable"); int i = 1; System.out.println("Contents of the table are: "); while(rs.next()) { System.out.println(rs.getString("Name")); Blob blob = rs.getBlob("Image"); byte byteArray[] = blob.getBytes(1,(int)blob.length()); FileOutputStream outPutStream = new FileOutputStream("E:\images\blob_output"+i+".jpg"); outPutStream.write(byteArray); System.out.println("E:\images\blob_output"+i+".jpg"); System.out.println(); i++; } } }
Connection established...... Table Created Contents of the table are: sample image E:\images\blob_output1.jpg
以上がJDBC Blob データ型とは何ですか?データを保存したり読み取ったりするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。