JDBC 4.0, setClientInfo clarification
All:
The javadoc for setClientInfo(String name, String value) at [Connection.setClientInfo(String name,String value)|http://download.oracle.com/javase/6/docs/api/java/sql/Connection.html#setClientInfo(java.lang.String,%20java.lang.String)] specifies that "... The driver shall generate a warning if the client info name specified is not recognized by the driver. ..."
However, javadoc for setClientInfo(Properties properties) at [Connection.setClientInfo(Properties)|http://download.oracle.com/javase/6/docs/api/java/sql/Connection.html#setClientInfo(java.util.Properties)] is "quiet" on this topic -- what to do if the names are not recognized.
I am wondering if setClientInfo(String name, String value)'s behavior for unrecognized names can be extended to setClientInfo(Properties). It will be great if the specification writers or JDBC driver developers in this forum can chime in on this topic.
With regards,
mp