com.jn.sqlhelper.mango.MangoQueryParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlhelper-mango Show documentation
Show all versions of sqlhelper-mango Show documentation
Supports mango (an ORM framework)
package com.jn.sqlhelper.mango;
import com.jn.langx.util.collection.Collects;
import com.jn.sqlhelper.dialect.parameter.BaseQueryParameters;
import org.jfaster.mango.binding.BoundSql;
import org.jfaster.mango.type.TypeHandler;
import java.util.List;
public class MangoQueryParameters extends BaseQueryParameters {
@Override
public void setParameters(BoundSql parameters) {
super.setParameters(parameters);
}
@Override
public void setParameters(BoundSql boundSql, int beforeSubqueryCount, int afterSubqueryCount) {
super.setParameters(boundSql, beforeSubqueryCount, afterSubqueryCount);
this.subqueryParameters = boundSql.copy();
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy