![JAR search and dependency download from the Maven repository](/logo.png)
com.tsc9526.monalisa.orm.dao.Update Maven / Gradle / Ivy
/*******************************************************************************************
* 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 Update{
protected T model;
protected DBConfig db;
public Update(T model){
this.model=model;
}
public T getModel(){
return this.model;
}
public Update set(String name,Object value){
this.model.set(name,value);
return this;
}
public Update use(DBConfig db){
this.db=db;
return this;
}
public DBConfig db(){
return this.db==null?model.db():this.db;
}
public int update(){
Query query=model.dialect().update(model);
query.use(db());
return query.execute();
}
/**
*
* @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 update(String whereStatement,Object ... args){
Query query=model.dialect().update(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 updateByExample(Example example){
Query w=QEH.getQuery(example);
Query query=model.dialect().update(model,w.getSql(), w.getParameters());
query.use(db());
return query.execute();
}
public UpdateForExample updateForExample(Example example){
return new UpdateForExample(example);
}
public class UpdateForExample{
private Example example;
public UpdateForExample(Example example){
this.example=example;
}
public UpdateForExample set(String name,Object value){
set(name,value);
return this;
}
/**
*
* @return number of rows affected
*
* @see Update#updateByExample(Example)
*/
public int update(){
return Update.this.updateByExample(example);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy