Results 1 to 5 of 5

Thread: Error: "insufficient key column information for updating or refreshing"

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2000
    Posts
    4

    Lightbulb

    Anybody know what that mean?

    Thanks in Advance
    Ing. Pedro de la Lastra

  2. #2
    Frenzied Member
    Join Date
    Aug 1999
    Location
    Santa Clara, Ca , 95058
    Posts
    1,105
    In ADO it means examine your cursor choice.


  3. #3
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    Are you trying to update a recordset that is based off of a join query?

  4. #4
    Hyperactive Member
    Join Date
    Nov 1999
    Location
    Columbia, SC USA
    Posts
    374

    Talking

    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.

  5. #5
    Lively Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    88
    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..)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width