Package com.volantis.synergetics.reporting.config

Examples of com.volantis.synergetics.reporting.config.SqlHandler


     * Constructor
     * @param connStrategy ConnectionStrategy
     * @param report ReportElement
     */
    JDBCReportHandler(ConnectionStrategy connStrategy, ReportElement report) {
        SqlHandler handler = report.getSqlHandler();
            connectionStrategy = connStrategy;
        insertSQLStatement = prepareSQLString(handler);
        bindingPositions = prepareBindingPositions(handler);
        datasourceName = handler.getDatasourceName();
        this.bindingName = report.getBinding();
    }
View Full Code Here

TOP

Related Classes of com.volantis.synergetics.reporting.config.SqlHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.