Documentation inaccuracies
--------------------------
Key: OPENJPA-1321
URL: https://issues.apache.org/jira/browse/OPENJPA-1321
Project: OpenJPA
Issue Type: Bug
Components: docs
Affects Versions: 1.2.1
Environment:
http://openjpa.apache.org/builds/1.2.1/apache-openjpa-1.2.1/docs/manual/manual.pdf
Reporter: Brian Kalbfus
Priority: Minor
Example 9.8. Named Seq Sequence: @SequenceGenerator properties gave me
compile errors
@SequenceGenerator(name="AuthorSeq" sequence="table(Table=AUTO_SEQ,
Increment=100)")
should be
@SequenceGenerator (name="AuthorSeq", sequenceName="table(Table=AUTO_SEQ,
Increment=100)")
4.4.3. OracleDictionary Properties:
According to the logs when I set this up to be not set,
AutoAssignSequenceName: The global name of the sequence that OpenJPA will
assume to hold the value of primary key
value for rows that use auto-increment. If left unset, OpenJPA will use a the
sequence named "SEQ_<table name>".
should be
AutoAssignSequenceName: The global name of the sequence that OpenJPA will
assume to hold the value of primary key
value for rows that use auto-increment. If left unset, OpenJPA will use a the
sequence named "<table name>_<column name>_SEQ".
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.