type in autogenerated keys documentation. Should be
Statement.RETURN_GENERATED_KEYS not Statement.RETURN_GENERATED_KEY
-----------------------------------------------------------------------------------------------------------------------
Key: DERBY-2850
URL: https://issues.apache.org/jira/browse/DERBY-2850
Project: Derby
Issue Type: Bug
Affects Versions: 10.3.0.0
Reporter: Kathey Marsden
Priority: Minor
In the autogenerated keys examples there is a typo:
http://db.apache.org/derby/docs/dev/ref/crefjavstateautogen.html
The example for Code fragment 1 has
stmt.execute(
"INSERT INTO TABLE1 (C11) VALUES (1)",
Statement.RETURN_GENERATED_KEY);
but it should be:
stmt.execute(
"INSERT INTO TABLE1 (C11) VALUES (1)",
Statement.RETURN_GENERATED_KEYS);
http://db.apache.org/derby/docs/dev/ref/crefjavstateautogen.html
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.