JDBC spec needs to clarify the behavior of using the Time escape sequence for the date portion when used with a column that includes date such as datetime or timestamp.
It should follow the behavior of the Time class where it is set to epoch Jan 1 1970
The javadocs for Statement.setQueryTimeout needs updated:
> Statement#setQueryTimeout:
> > void setQueryTimeout(int seconds)
> > throws SQLException
> >
> > Sets the number of seconds the driver will wait for a Statement object
> > to execute to the given number of seconds. If the limit is exceeded,
> > an SQLException is thrown.
> > ************
The above should be changed to be SQLTimeoutException?
It should follow the behavior of the Time class where it is set to epoch Jan 1 1970
The javadocs for Statement.setQueryTimeout needs updated:
> Statement#setQueryTimeout:
> > void setQueryTimeout(int seconds)
> > throws SQLException
> >
> > Sets the number of seconds the driver will wait for a Statement object
> > to execute to the given number of seconds. If the limit is exceeded,
> > an SQLException is thrown.
> > ************
The above should be changed to be SQLTimeoutException?