Package net.sf.services.soapjdbcgate

Examples of net.sf.services.soapjdbcgate.ExecutePreparedQuery


            } // if

            SoapJdbcResultSetMetaData metadata = mCachedMetadata.get( sql );

            ExecutePreparedQuery query = new ExecutePreparedQuery();

            query.setUsername( mUser );
            query.setPassword( mPassword );
            query.setDatabase( mDatabaseName );
            query.setSql( sql );
            query.setParam( prepareParameter( params ) );
            query.setWithMetadata( metadata == null );

            prepareHTTPClient();

            processResultSet( sql, mPort.executePreparedQuery( query ).get_return(), metadata );
View Full Code Here

TOP

Related Classes of net.sf.services.soapjdbcgate.ExecutePreparedQuery

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.