org.jxls.jdbc.JdbcHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.jdbc;
import org.jxls.common.JxlsException;
import java.sql.Connection;
import java.sql.ParameterMetaData;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Types;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* A class to help execute SQL queries via JDBC
*/
public class JdbcHelper {
private Connection conn;
public JdbcHelper(Connection conn) {
this.conn = conn;
}
public List