How do you have the "defaultIdMethod" defined?

If it's "native" then your database should take care
of automatically putting the value in the
"publisher_id" field. If it is defined as "idbroker"
then make sure the id_broker table exists and has data
for the publisher table.

Regards,
syg
--- Ferruh Zamangoer
<[EMAIL PROTECTED]> wrote:

> 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]
> 
> 



                
__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to