online.sanen.unabo.sql.pipe.StreamPileline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unabo Show documentation
Show all versions of unabo Show documentation
Unabo, the Java™ progressive ORM framework
package online.sanen.unabo.sql.pipe;
import java.lang.reflect.Method;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import java.util.function.Function;
import com.mhdt.Print;
import com.mhdt.degist.Validate;
import com.mhdt.toolkit.Reflect;
import online.sanen.unabo.api.Handel;
import online.sanen.unabo.api.exception.QueryException;
import online.sanen.unabo.api.structure.ChannelContext;
import online.sanen.unabo.api.structure.Column;
import online.sanen.unabo.api.structure.StreamConsumer;
import online.sanen.unabo.sql.Assembler;
import online.sanen.unabo.sql.Meta;
import online.sanen.unabo.template.JdbcUtils;
import online.sanen.unabo.template.SqlTemplate;
/**
* @author LazyToShow
* Date: 2018年9月11日
* Time: 上午10:56:44
*/
public class StreamPileline implements SimplePileline, Handel {
private Consumer>> consumer;
private Map aliases;
private int bufferSize = 10000;
private Consumer
© 2015 - 2024 Weber Informatics LLC | Privacy Policy