Quote:
quote:Originally posted by kilika
INSERT INTO <tablename> (<The column names you want to update>) VALUES (<your values here separated by commas - they must match the order of the column names>)
Conn.Execute("Insert INTO...")
Chris
|
Not to be too critical, But I think you are confused or not explaining yourself very well.
First off, if you have a stored procedure to do the insert why do you want to pass an SQL statement to the connection object? You are only duplicating code and your sproc is not even going to run. Seems Like a waste of resources to me.
In respond to your second post "... you can call it the same way you call any other stored proc ...". I think that was the whole point of the initial post - How do you execute the sproc from within
VB.
I am I wrong or the only one who sees it this way?
Larry Asher