Anyone know how to connect to the database in a manner that allows the execution of CREATE/ALTER PROCEDURE......
ad-hoc..? how do you do it..?
Printable View
Anyone know how to connect to the database in a manner that allows the execution of CREATE/ALTER PROCEDURE......
ad-hoc..? how do you do it..?
Just call ExecuteNonQuery on an IDbCommand object, e.g. SqlCommand, to execute whatever non-query SQL statement you like.
You ever felt really dumb....? I know I tried that before and had an error, but it works fine now. Thx.