All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tsc9526.monalisa.orm.dao.Delete Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/*******************************************************************************************
 *	Copyright (c) 2016, zzg.zhou([email protected])
 * 
 *  Monalisa is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU Lesser General Public License as published by
 *	the Free Software Foundation, either version 3 of the License, or
 *	(at your option) any later version.

 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU Lesser General Public License for more details.

 *	You should have received a copy of the GNU Lesser General Public License
 *	along with this program.  If not, see .
 *******************************************************************************************/
package com.tsc9526.monalisa.orm.dao;

import com.tsc9526.monalisa.orm.Query;
import com.tsc9526.monalisa.orm.criteria.Example;
import com.tsc9526.monalisa.orm.criteria.QEH;
import com.tsc9526.monalisa.orm.datasource.DBConfig;
import com.tsc9526.monalisa.orm.model.Model;

/**
 * 
 * @author zzg.zhou([email protected])
 */
@SuppressWarnings({"rawtypes","unchecked"})
public class Delete {
	protected T  model;
	
	protected DBConfig db;
	
	public  Delete(T model){
		this.model=model;		 
	}
	 
	public T getModel(){
		return this.model;
	}
		 
	public Delete set(String name,Object value){		
		this.model.set(name,value);
		return this;
	}	
 
	
	public Delete use(DBConfig db){
		this.db=db;
		return this;
	}
	
	public DBConfig db(){
		return this.db==null?model.db():this.db;
	}

	/**
	 * Delete by primary key
	 * 
	 * @return number of rows affected
	 */
	public int delete(){
		Query query=model.dialect().delete(model);
		query.use(db());
		return query.execute();
	}
	
	/**
	 * Delete all data use DML-SQL(Can rollback): delete from xxxTable
* * * @return number of rows affected */ public int deleteAll(){ Query query=model.dialect().deleteAll(model); query.use(db()); return query.execute(); } /** * Delete all data use DDL-SQL(Cannot rollback): truncate table xxx;
* * @return number of rows affected */ public int truncate(){ Query query=model.dialect().deleteAll(model); query.use(db()); return query.execute(); } /** * Delete records filter by whereStatement * @param whereStatement where cause * @param args args * * @return number of rows affected * * @see com.tsc9526.monalisa.orm.resources.HelpDoc#helpQuery(int,int,Example,String, Object...) */ public int delete(String whereStatement,Object ... args){ Query query=model.dialect().delete(model,whereStatement,args); query.use(db()); return query.execute(); } /** * * @param example Example * @return number of rows affected * * @see com.tsc9526.monalisa.orm.resources.HelpDoc#helpQuery(int,int,Example,String, Object...) */ public int deleteByExample(Example example){ Query w=QEH.getQuery(example); Query query=model.dialect().delete(model,w.getSql(), w.getParameters()); query.use(db()); return query.execute(); } public DeleteForExample deleteForExample(Example example){ return new DeleteForExample(example); } public class DeleteForExample{ private Example example; public DeleteForExample(Example example){ this.example=example; } public DeleteForExample set(String name,Object value){ set(name,value); return this; } /** * @return number of rows affected * * @see Delete#deleteByExample(Example) */ public int delete(){ return Delete.this.deleteByExample(example); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy