|
-
Feb 24th, 2007, 07:24 PM
#1
Thread Starter
WiggleWiggle
Update with ADO
How do you update with ADO. I can add, but i dont know how to update...
My usual boring signature: Something
-
Feb 25th, 2007, 01:58 AM
#2
New Member
Re: Update with ADO
Just like when your deleting a record the only Deference it instead of rs.DELETE used rs.UPDATE
-
Feb 25th, 2007, 06:09 AM
#3
Re: Update with ADO
If you are using ADO Code (I hope) rather than an ADODC bound control, then you would use the .Execute method of the connection object to perform action queries like UPDATE, DELETE, INSERT, etc.
-
Feb 25th, 2007, 11:22 AM
#4
Re: Update with ADO
Moved to Database Development forum
-
Feb 25th, 2007, 11:28 AM
#5
Re: Update with ADO
Code:
strsql = "Update table name here Set field name here = value here Where Key field here (PK) = a value here to point to the required record
then use connection execute method:
Sometimes the Programmer
Sometimes the DBA
Mazz1
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
|