Examples of OracleObjectType


Examples of org.eclipse.persistence.platform.database.oracle.jdbc.OracleObjectType

    /**
     * INTERNAL:
     * Build a runtime Oracle object type from the meta-data.
     */
    public OracleObjectType process() {
        OracleObjectType objectType = new OracleObjectType();
        super.process(objectType);
       
        Map<String, DatabaseType> typeFields = new HashMap<String, DatabaseType>();
        for (PLSQLParameterMetadata field : this.fields) {
            typeFields.put(field.getName(), getDatabaseTypeEnum(field.getDatabaseType()));
        }
       
        objectType.setFields(typeFields);
        return objectType;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.