Package net.sourceforge.jivalo.cnfmgr.persistent.impl

Examples of net.sourceforge.jivalo.cnfmgr.persistent.impl.PersistentConnectorImpl


public class PersistentConnectorClient {

    public void refreshDataSources() throws
    BaseException {
      PersistentConnectorImpl impl = new PersistentConnectorImpl();
      impl.refreshDataSources();
    }
View Full Code Here


    public static Vector executeSqlQuery(String sqlString,
                                  PreparedStatementParameter[] parameters,
                                  String resourceName) throws Exception {
     
      PersistentConnectorImpl impl = new PersistentConnectorImpl();
      return impl.executeSqlQuery( sqlString, parameters, resourceName);

    }
View Full Code Here

    public static Integer executeSql(String sqlString,
                              PreparedStatementParameter[] parameters,
                              String resourceName) throws Exception {
     
      PersistentConnectorImpl impl = new PersistentConnectorImpl();
     
      return impl.executeSql( sqlString, parameters, resourceName);
     }
View Full Code Here

TOP

Related Classes of net.sourceforge.jivalo.cnfmgr.persistent.impl.PersistentConnectorImpl

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.