Click to See Complete Forum and Search --> : Error: "insufficient key column information for updating or refreshing"
Pedro de la Lastra
Aug 31st, 2000, 10:36 AM
Anybody know what that mean?
Thanks in Advance
JHausmann
Aug 31st, 2000, 04:29 PM
In ADO it means examine your cursor choice.
:)
Clunietp
Sep 1st, 2000, 10:02 AM
Are you trying to update a recordset that is based off of a join query?
DrewDog_21
Sep 1st, 2000, 02:02 PM
If you are using ADO, it also can mean that you did not include the primary key in your recordset. You have to include the primary key field in an ADO recordset that you want to update, otherwise it will not update correctly.
sanon
Sep 2nd, 2000, 02:55 AM
You insert data more or less of existing fields in DB. The safe way to insert a new record is specify what field you need to insert. For example:
In the DB there are:
id, name, nickname, address
but you need to insert only id, name, and address in some cases.
insert into table_name (id,name,address) values(...bla..bla..)
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.