Run() method is obsolete

The Run() method for BaseClasses.Data.StoredProcedure has been replaced by RunQuery() and RunNonQuery().  RunQuery should be used when records are being retrieved by the stored procedure.  RunNonQuery should be used when inserting or deleting records when the values returned are just output parameters and not data records.  The Run() method is still supported temporarily and behaves as RunQuery.  The Run() method will be removed in future versions.

Migration effects

The new methods are automatically used in application code.

What you should do

Review your code customizations and replace calls to Run() with either RunQuery() or RunNonQuery() based on the results returned from the stored procedure.

See Also

Version 6.0 Application Migration