Speed of Stored Procedures
I am running ASP pages using IIS4 with the data in SQL Server 7
I currently have an asp script to login to the site. The script checks the user name and password are correct using an SQL select statement on the database
Would it be faster to run if I wrote a stored procedure to validate the login?
In general is it quicker to use a Stored Procedure than running ADO with an SQL query string?
I am running ASP pages using IIS4 with the data in SQL Server 7
I currently have an asp script to login to the site. The script checks the user name and password are correct using an SQL select statement on the database
Would it be faster to run if I wrote a stored procedure to validate the login?
In general is it quicker to use a Stored Procedure than running ADO with an SQL query string?