Hi Manuel,
Per http://cayenne.apache.org/doc/generated-columns.html DB-generated
pk depends on support of this feature by the underlying JDBC driver.
Our testing showed that it only works in MySQL, Derby and SQLServer.
For HSQLDB this feature is turned off (I just tried it on HSQL
1.8.0.4 - the driver support isn't there), so Cayenne behavior is to
fail over to the AUTO_PK_SUPPORT lookup table.
As auto-increment feature makes it to other JDBC drivers (including
HSQL), we'll turn it on in Cayenne accordingly.
Andrus
On Mar 1, 2007, at 11:53 AM, Manuel Thiemann wrote:
Hello,
I just started playing a bit with Cayenne to find out how things
work. Therefore I created a database (HSQL) with a single table and
in the CayenneModeler set "Primary Key Generation Strategy" to
"Database-Generated" and the "Auto Increment" field to "ID
(INTEGER)" which is the column defined as Primary Key at the
attributes tab. However when I try to insert a row in my test
program I get an exception because I don't have an AUTO_PK_SUPPORT
table in my database. But as far as I understand I don't not need
this table if primary keys are generated by the database itself. Is
there something else I have to configure to not need to have that
table (It works fine if I create that table via "Generate Database
Schema" but I would prefer to have the database doing that primary
key stuff. Or is there any reason that it is better to use
AUTO_PK_SUPPORT)?
Thanx for help.
Manuel