Hi folks,

I use the following for the hibernate configuration:

<property name="dialect">net.sf.hibernate.dialect.Oracle9Dialect</property>
<property name="hibernate.default_schema">SCHEMA_NAME</property>
<property name="hibernate.show_sql">true</property>

and the following passage for diverse id property declarations:

        <id
            name="id"
            column="id"
            type="java.lang.Long"
        >
            <generator class="">
                <param name="sequence">SQL_SEQUENCE_NAME</param>
            </generator>
        </id>

So far Hibernate operaions causing simple JDBC Select statements do work
fine as the SCHEMA_NAME is appended properly in front of the respective
table names.
Unfortunately this does not seem to be the case for select statements on
sequences: 
The SCHEMA_NAME prefix is missing!
I assume this is a bug - right? Does anybody know a fix?

Regards, 

Alexander Thomas




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to