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

com.github.rrsunhome.excelsql.format.SqlResultSet Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.format;

import com.github.rrsunhome.excelsql.viewer.ViewerRegistry;

import java.util.List;

/**
 * @author : wangqijia
 * create at:  2021/11/4  下午6:54
 */
public class SqlResultSet extends ViewerRegistry implements ResultSet {

    private List sqlList;

    public SqlResultSet(List sqlList) {
        this.sqlList = sqlList;
    }

    @Override
    public void outputView() {
        getViewers().forEach(viewer -> viewer.batchOutPut(sqlList));
    }

    @Override
    public List getResult() {
        return sqlList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy