Package net.sf.services.soapjdbcgate.types

Examples of net.sf.services.soapjdbcgate.types.ArrayOfString


    }


    private ArrayOfString prepareParameter( Object[] params ) {
        ArrayOfString parameters = new ArrayOfString();

        for ( Object object : params ) {
            if ( object instanceof Boolean ) {
                Boolean b = (Boolean) object;

                parameters.addValue( b ? "1" : "0" );

            } else {
                parameters.addValue( object == null ? null : object.toString() );

            } // if
        } // for

        return parameters;
View Full Code Here

TOP

Related Classes of net.sf.services.soapjdbcgate.types.ArrayOfString

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.