Link to home
Start Free TrialLog in
Avatar of gautschi
gautschi

asked on

ADO: Read And Write Recordset with Command.Execute

-I want to open a recordset with command.execute "stored procedure"
-I want that the recordset isn't just readonly
-I want that when I delete a record in the recordset the database isn't affected - just the recordset.
-I want to search, move etc. in the recordset

how can I do that?

(I tried I with recordset.open but as I had a look at the tracer I noticed that it's always doing cursor fetches (and not just one stored procedure)
ASKER CERTIFIED SOLUTION
Avatar of vbyuval
vbyuval

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jon_Raymond
Jon_Raymond

You could create an array and place all the values in it.  Then manipulate the data in the array.