Subject | Re: [Firebird-Java] Problema al insertar un registro |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-08-23T13:27:52Z |
> SQLException: Underlying result set does not contain all columns thatJayBird does not know which column is a primary key (since you have not
> form 'best row identifier'.
defined any). It needs this information to be able to perform the update.
Either define a primary key for your table, or change your select to
SELECT RDB$DB_KEY, * FROM COFFEES
Roman