> I'm using postgres to generate torque classes but the automatic
> generation seems to make a few mistakes.
> In the base class I found this java statement
>
> private int pkAnagrafica =
> nextval('anagrafica_pk_anagrafica_seq'::regclass);
>
> which is marked as wrong by the compiler.
>
> The same happens in the copyobject method of the same class:
>
> copyObj.setPkAnagrafica(
nextval('anagrafica_pk_anagrafica_seq'::regclass));
>
> Is there a way to stop Torque generating these bad statements ?
Can you send the schema definition which you use for the table in question
? This would ease diagnostics. I suspect that you use a default value for
the id; this is not necessary.
Thomas