| ASF |
#629171 |
Tue Feb 19 17:40:40 UTC 2008 |
kmarsden |
DERBY-2653 (partial)Expose existing auto-generated key functionality through more JDBC APIs in Derby Client.
Enables API's that take columnNames.
Connection.prepareStatement(String sql, String[] columnNames);
Statement.execute(String sql, String[] columNames);
Statement.executeUpdate(String sql, String[] columnNames);
To get generated keys, user must specify an array of one column name, which
should be the identity column. Client actually ignores the contents at this
time.
|