I have one stored procedure in MS SQL Server.
sp_DeleteEmployee @id INT
I can call this stored procedure by two way.
One is:
The other used Command Objcet and Parameter, then execute the Command Object.VB Code:
cnn.Execute "sp_DeleteEmployee " & txtID.Text
Which one is better? why?
