harmmeijer
Programmer
I am using the following command
mycommand.commandText = “UPDATE myTable SET myField=’myvalue’ WHERE myIndex=5
set myRecordset = mycommand.execute(1,,adCmdText)
The recordset myRecordset has got a field count of zero but the record with the myIndex of 5 is updated, the same goes for an INSERT sql command the new record is made but myRecordset has got zero fields.
I really need the recordset (in the INSERT especially) because after the INSERT sql command I need to put some binary stuff in that record and I need the myIndex of the new record.
mycommand.commandText = “UPDATE myTable SET myField=’myvalue’ WHERE myIndex=5
set myRecordset = mycommand.execute(1,,adCmdText)
The recordset myRecordset has got a field count of zero but the record with the myIndex of 5 is updated, the same goes for an INSERT sql command the new record is made but myRecordset has got zero fields.
I really need the recordset (in the INSERT especially) because after the INSERT sql command I need to put some binary stuff in that record and I need the myIndex of the new record.