|
-
Aug 31st, 2000, 10:36 AM
#1
Thread Starter
New Member
Anybody know what that mean?
Thanks in Advance
-
Aug 31st, 2000, 04:29 PM
#2
Frenzied Member
In ADO it means examine your cursor choice.
-
Sep 1st, 2000, 10:02 AM
#3
Guru
Are you trying to update a recordset that is based off of a join query?
-
Sep 1st, 2000, 02:02 PM
#4
Hyperactive Member
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.
-
Sep 2nd, 2000, 02:55 AM
#5
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|