Java在SQL Server寫入text,ntext,image欄位

來源:互聯網
上載者:User
   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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.