ASP - RecordSets and RecordCount

windows

Guest
Hi there,

I am having trouble with a bunch of ASP files that are creating recordsets implicitly, e.g. Set rs = databaseconnection.Execute(mySQLCode). On some servers this means the RecordCount function is unavailable. Are there any settings I can change on the server (IIS, MySql ODBC 3.51 Driver) so that I don't have to change the code for all these files?

All the best,

VincentWhat error mesg you encountered?in ADO it is up to the ODBC driver to report the correct records afffected. if you do a multi-step query it will return the sum of all records affected. IE update/delete....
 
Back
Top