JDBC API / Core JDBC Classes, Interfaces, and Methods |
The java.sql.Driver.getPropertyInfo method method returns a DriverPropertyInfo object. In a GemFire XD system, this consists of an array of database connection URL attributes. (See Configuration Properties.) To get the DriverPropertyInfo object, request the JDBC driver from the driver manager:
String url = "jdbc:gemfirexd:"; Properties info = new Properties(); java.sql.DriverManager.getDriver(url).getPropertyInfo(url, info);