Hi,
i just try to insert a value into table where I have only one Field, which
is also the primary key field. In the tutorial I have seen the following
code for inserting:
Publisher addison = new Publisher();
addison.setName("Addison Wesley Professional");
addison.save();
What I want to make is like this:
Publisher addison = new Publisher();
addison.save();
But it doesn't work.
I've defined the table in the project-schema.xml like this for example:
<table name="publisher" description="Publisher Table">
<column
name="publisher_id"
required="true"
primaryKey="true"
type="INTEGER"
description="Publisher Id"/>
Thanks for any help.
regards
Ferruh
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]