Monthly Archives: April 2013
Difference between SQL Server Functions and Stored Procedures
Sql Server has Stored procedures and Functions objects. They have their own limitations, advantages and disadvantages. Below is a list of differences between Functions and Stored Procedures in Sql Server. Functions Stored Procedures Function must return a value. Procedure can return zero or n values. Functions can have only input parameters for it. Procedures can […]
Singleton and Static Classes
In this blog we will discuss the Singleton & Static Classes, their pro and cons. On a higher level they both have approximately same functionality ans usages. As you know both Singleton and Static classes provide a central point of access i.e. there’s only one instance and one way to access it. I have another post […]