Package oracle.sql

Examples of oracle.sql.StructDescriptor


            throws SQLException
    {
      if( dataType.startsWith("*.")){
        dataType = "DRA."+dataType.substring(2);//TODO here
      }
        StructDescriptor descriptor =
            StructDescriptor.createDescriptor( dataType, connection );
   
         return new STRUCT( descriptor, connection, attributes );
    }
View Full Code Here

TOP

Related Classes of oracle.sql.StructDescriptor

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.