Feedback
Did this article resolve your question/issue?

   

Article

Sample Code for obtaining Connect for JDBC driver property details

Information

 
TitleSample Code for obtaining Connect for JDBC driver property details
URL Namesample-code-for-obtaining-connect-for-jdbc-driver-property-details
Article Number000110329
EnvironmentProduct: Connect for JDBC Drivers
Version: All Supported
O/S: All Supported
Database: All Supported
Application: N/A
Question/Problem Description
Sample Code for obtaining Connect for JDBC driver property details.

This can be useful for discovering possible values to set the connection options to, such as the list of possible encryption types supported by the driver.

 
Steps to Reproduce
Clarifying Information
Error Message
Defect Number
Enhancement Number
Cause
Resolution
import java.sql.*;

public class getDriverOptions{
    
    public static void main(String artgs[]) throws SQLException{
    
        String url = "jdbc:datadirect:oracle://nc-lnx168:1521;sid=ASC"; 
        com.ddtek.jdbc.oracle.OracleDriver drv = new com.ddtek.jdbc.oracle.OracleDriver(); 
        
        DriverPropertyInfo[] props = drv.getPropertyInfo(url, null); 
        
        for (int i = 0; i < props.length; i++) { 
            System.out.println("name=" + props[i].name); 
            System.out.println("description=" + props[i].description); 
            System.out.println("value=" + props[i].value); 
            if (props[i].choices == null) { 
                System.out.println("choices=null"); 
            } 
            else { 
                System.out.print("choices:"); 
                for (int j = 0; j < props[i].choices.length; j++) { 
                    System.out.print(props[i].choices[j]); 
                    if (j != props[i].choices.length - 1) { 
                        System.out.print(","); 
                    } 
                } 
                System.out.println(); 
            }         
            System.out.println("required=" + props[i].required);         
            System.out.println("----------"); 
        }    
    }
}
Workaround
Notes
Last Modified Date2/21/2019 7:48 PM
Files
Disclaimer The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Progress Software Corporation makes all reasonable efforts to verify this information. However, the information provided is for your information only. Progress Software Corporation makes no explicit or implied claims to the validity of this information.

Any sample code provided on this site is not supported under any Progress support program or service. The sample code is provided on an "AS IS" basis. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample code is borne by the user. In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.