Is it possible in ADO to execute a (select) stored procedure, but just
return the number of records, not the actual data.
My client has some stored procedures which if executed with certain
parameters can return thousands of rows. I would like to execute a check
prior to returning these rows across the (very slow) network
** I understand that the SP must execute on the server. It is just the
passing of the data back which concerns me. **
I cannot change the stored procedures, only the ADO code.
Thanks.