Package net.sf.soapjdbc

Examples of net.sf.soapjdbc.SoapJdbcResultSetMetaDataField


    private SoapJdbcResultSetMetaDataField[] convertFields(Field[] fields) {
        SoapJdbcResultSetMetaDataField[] newFields = new SoapJdbcResultSetMetaDataField[fields.length];
       
        for (int i = 0; i < fields.length; i++) {
            newFields[i] = new SoapJdbcResultSetMetaDataField();
           
            try {
                newFields[i].sqlType = fields[i].getSQLType();
                newFields[i].originalType = MysqlDefs.typeToName( fields[i].getMysqlType() );
                newFields[i].autoIncrement = fields[i].isAutoIncrement();
View Full Code Here

TOP

Related Classes of net.sf.soapjdbc.SoapJdbcResultSetMetaDataField

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.