protected Connection prepareConnection()

in src/main/java/org/apache/commons/dbutils/AbstractQueryRunner.java [518:525]


    protected Connection prepareConnection() throws SQLException {
        if (getDataSource() == null) {
            throw new SQLException(
                    "QueryRunner requires a DataSource to be "
                            + "invoked in this way, or a Connection should be passed in");
        }
        return getDataSource().getConnection();
    }