News

In an earlier column, I suggested that one way to speed up your application was to reduce the trips you make to your database, specifically by avoiding calling a stored procedure multiple times. To ...
Creating SQL Stored Procedures via SQL Server is easier than you might have originally thought, so let us explain what to do.
In an earlier column, I showed how to call a stored procedure from Entity Framework without having to mess with connection and parameter objects (though you could mess with connection and parameter ...
Prepared statements avoid the process of compiling, parsing and running a stored procedure or inline SQL statement in your code. The PHP prepared statement function speeds up the application ...