Package it.eng.spago.dbaccess.sql.result

Examples of it.eng.spago.dbaccess.sql.result.DataResult


      String datasource, String statement) throws EMFInternalError {
  logger.debug("IN");
  Object result = null;
  DataConnection dataConnection = null;
  SQLCommand sqlCommand = null;
  DataResult dataResult = null;
  try {
      DataSourceUtilities dsUtil = new DataSourceUtilities();
      Connection conn = dsUtil.getConnection(requestContainer,datasource);
      dataConnection = dsUtil.getDataConnection(conn);
      sqlCommand = dataConnection.createSelectCommand(statement);
      dataResult = sqlCommand.execute();
      ScrollableDataResult scrollableDataResult = (ScrollableDataResult) dataResult.getDataObject();
      result = scrollableDataResult.getSourceBean();
  } finally {
      Utils.releaseResources(dataConnection, sqlCommand, dataResult);
      logger.debug("OUT");
  }
View Full Code Here

TOP

Related Classes of it.eng.spago.dbaccess.sql.result.DataResult

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.