Package acolyte

Examples of acolyte.UpdateResult


      Query query = vtoccQueryFactory.create(sql, parameters);

      // TODO(timofeyb): provide rpc controller
      QueryService.QueryResult response = sqlQueryBlockingInterface
          .execute(rpcControllerProvider.get(), query);
      return new UpdateResult((int) response.getRowsAffected());
    } catch (ServiceException e) {
      LOGGER.debug("SqlUpdate failed: ", e);
      throw VtoccSqlExceptionFactory.getSqlException(e);
    }
  }
View Full Code Here

TOP

Related Classes of acolyte.UpdateResult

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.