RDMConnection class

Implements the Connection interface of java.sql.

References

For more information, reference JDBC documentation for: Connection

Public Methods

Unsupported Methods

For all these unsupported methods the JDBC Driver will throw a SQLFeatureNotSupportedException instead of a SQLFeatureNotSupportedException.

SQL XML type. The SQL engine in RDM has no XML type, so the JDBC driver does not support it. This includes the following methods which throw a SQLException.

  • Connection.createSQLXML()

SQL Array type. The SQL engine in RDM has no Array type, so the JDBC driver does not support it. This includes the following methods which throw a SQLException.

  • Connection.createArrayOf(String, Object[])

SQL Struct type. The SQL engine in RDM has no Struct type, so the JDBC driver does not support it. This includes the following method which throws a SQLException.

  • Connection.createStruct(String, Object[])

Auto generated keys. The SQL engine does not support the returning of auto generated columns/keys. Attempting to specify that auto generated columns/keys should be returned will throw a SQLException. This affects the following methods

  • Connection.prepareStatement(String, int)
  • Connection.prepareStatement(String, int[])
  • Connection.prepareStatement(String, String[])