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

com.dmj.sqldsl.executor.Executor Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.dmj.sqldsl.executor;

import com.dmj.sqldsl.model.DslQuery;
import com.dmj.sqldsl.model.Entity;
import java.util.List;

public interface Executor {

   List execute(DslQuery query, Class resultClass);

  int save(Entity entity);

  BatchResult save(List entities);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy