刪除數(shù)據(jù)

2018-05-30 11:42 更新

刪除指定id值的數(shù)據(jù)代碼如下

String id="id_xxx";
		Template<Product> template=new ProxyTemplate(Product.class).getInstance();
		try 
		{
			template.delete(id);
		} catch (Exception e) {
			e.printStackTrace();
		}finally
		{
			template.close();
		}

可以看到控制臺(tái)輸出如下

delete from PRODUCT where ID='id_xxx'

如果需要?jiǎng)h除多條數(shù)據(jù)時(shí),則調(diào)用deletes方法即可,如下


List<String> idList=new LinkedList();
template.deletes(idList);


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)