You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openjpa.apache.org by "Milosz Tylenda (JIRA)" <ji...@apache.org> on 2009/10/10 21:56:31 UTC

[jira] Assigned: (OPENJPA-1321) Documentation inaccuracies

     [ https://issues.apache.org/jira/browse/OPENJPA-1321?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Milosz Tylenda reassigned OPENJPA-1321:
---------------------------------------

    Assignee: Milosz Tylenda

> 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
>            Assignee: Milosz Tylenda
>            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.