M
Manny
Hi there,
I created the stored procedures for Select, Insert, Update and Delete
I got the Select Stored procedure to select data from the database with no
problem. By the way, I'm kind of new to stored procedures.
So, I want to Insert, Update or Delete records from my Windows Application
using the above created stored procedures. I was using Dynamic SQL before
and decided to move to stored procedures for many reasons, one of them and
very important for me is performance and security. Now as I was saying, when
I call the Update command on the DataAdapter I got the message, depending of
what I'm doing, that I need to supply a valid Update, Insert or Delete
command to be performed.
So I guess that it's not as simple to call the Update command to update the
database, as I was doing it with Dynamics SQL statements????
How can I accomplish this in code? to be able to call just the update and
have my database updated through the stored procedures.
Thanks very much.
Manny
I created the stored procedures for Select, Insert, Update and Delete
I got the Select Stored procedure to select data from the database with no
problem. By the way, I'm kind of new to stored procedures.
So, I want to Insert, Update or Delete records from my Windows Application
using the above created stored procedures. I was using Dynamic SQL before
and decided to move to stored procedures for many reasons, one of them and
very important for me is performance and security. Now as I was saying, when
I call the Update command on the DataAdapter I got the message, depending of
what I'm doing, that I need to supply a valid Update, Insert or Delete
command to be performed.
So I guess that it's not as simple to call the Update command to update the
database, as I was doing it with Dynamics SQL statements????
How can I accomplish this in code? to be able to call just the update and
have my database updated through the stored procedures.
Thanks very much.
Manny