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

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


                ScrollableDataResult scrollableDataResult = (ScrollableDataResult) dataResult
                        .getDataObject();
                result = scrollableDataResult.getSourceBean();
            } // if (type.equalsIgnoreCase("SELECT"))
            else {
                InformationDataResult informationDataResult = (InformationDataResult) dataResult
                        .getDataObject();
                result = new Boolean(informationDataResult.getAffectedRows() > 0);
            } // if (type.equalsIgnoreCase("SELECT")) else
            return result;
        } // try
        catch (Exception ex) {
            logger.error("", ex);
View Full Code Here

TOP

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

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.