Java在SQL Server資料庫中寫入text,ntext,image欄位,資料量太大時,可以通過updatetext語句分段插入。
Person person; // 需要插入的Person對象
InputStream input; // Person應該插入的Photo,通過網頁上傳獲得,將插入image類型欄位
Connection conn = new Connection(); // 實際的Connection對象
PreparedStatement stmt = null;
ResultSet rs = null;
String sql= null;
conn.setAutoCommit(false); // 設定 auto commit = false;
sql = "insert into person (id, name) values (?, ?)"; // 插入Person的其它欄位
stmt = conn.prepareStatement(sql);
stmt.setInt(1, person.id);
stmt.setString(2, person.name);
stmt.executeUpdate();
sql = "update person set photo = null where id = ?"; // 初始化image資料類型的指標
// 即使在insert時插入image類型的值為null,資料庫依然不會建立指標。可以使用update建立指標。
stmt = conn.prepareStatement(sql);
stmt.setInt(1, person.id);
stmt.executeUpdate();
sql = "select textptr(photo) from person where id = ?"; // 獲得image類型的指標
stmt = conn.prepareStatement(sql);
stmt.setInt(1, person.id);
rs = stmt.executeQuery(sql);
if (rs.next())
{
byte[] ptr = rs.getBytes(1); // ptr:image類型的指標
sql = "updatetext person.photo ? ? 0 ?"; // 更新image類型欄位,0表示不刪除內容
stmt = conn.prepareStatement(sql);
int offset = 0;
int len = 0;
byte[] buffer = new byte[10*1024]; // 讀寫緩衝區
while ((len = input.read(buffer)) != -1) // 讀取input流,-1表示已經讀完
{
stmt.setBytes(1, ptr); // image類型的指標
stmt.setInt(2, offset); // 位移量
stmt.setBytes(3, buffer); // 讀入的內容
stmt.executeUpdate(); // 將讀取內容寫入資料庫
stmt.clearParameters();
offset += len; // 移動位移量
}
sql = "updatetext person.photo ? ? NULL"; // 刪除多餘內容,0表示位移量後所有內容
stmt = conn.prepareStatement(sql);
stmt.setBytes(1, ptr);
stmt.setInt(2, offset); // 終點的位移量
stmt.executeUpdate();
input.close(); // 關閉輸入資料流
}
conn.commit(); // commit connection