Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Equivalent of rst.Edit for ADO

Status
Not open for further replies.

abdullauthan

Programmer
Apr 20, 2000
64
SA
Can anybody tell the equivalent of rst.Edit (DAO) for ADO recordsets. [sig][/sig]
 
is there any other way to edit ADO recordsets then? [sig][/sig]
 
If you mean the user, you can assign the ADO recordset values for a record
to a set of textboxes, let the user edit them, and then use an update statement,
or a batch update command, that I've never tried.

If you mean within the program, you can just assign values to the
fields of an ADO recordset record. [sig]<p>Jim<br><a href= > </a><br>oracle, vb, some javascript[/sig]
 
if you mean the SQL Statement you can use in ADO
I belive it's

&quot;Update Table (Fields, Fields, Fields) value(Value, Value,Value)&quot;

something like that. [sig]<p>Karl<br><a href=mailto:kb244@kb244.com>kb244@kb244.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top