M
mike
H
There are two ways to execute a stored procedure using ADO.NE
- call "exec sp_myproc val1,val2" statement over ADO SqlCommand myCommand = new SqlCommand(SQLQuery, mySqlConnection)
- use Command/Parameters objects to initialize and call the stored procedure
Which is a efficient way and wh
Appreciate your respons
Thank
Mik
There are two ways to execute a stored procedure using ADO.NE
- call "exec sp_myproc val1,val2" statement over ADO SqlCommand myCommand = new SqlCommand(SQLQuery, mySqlConnection)
- use Command/Parameters objects to initialize and call the stored procedure
Which is a efficient way and wh
Appreciate your respons
Thank
Mik