vote up 3 vote down star
2

Is there any benefit to explicitly using the StoredProcedure CommandType as opposed to just using a Text Command? In other words, is

cmd = new SqlCommand("EXEC StoredProc(@p1, @p2)");
cmd.CommandType = CommandType.Text;
cmd.Parameters.Add("@p1", 1);
cmd.Parameters.Add("@p2", 2);

any worse than

cmd = new SqlCommand("StoredProc");
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@p1", 1);
cmd.Parameters.Add("@p2", 2);

EDIT: Fixed bad copy paste job (again). Also, the whole point of the question is for a data access class. I'd much rather be able to pass the stored proc name and parameters in one line as opposed to extra lines for each parameter.

flag

80% accept rate

3 Answers

vote up 1 vote down check

One difference is how message pumping happens. Where I work we have a number of batch processes that run over night. Many of them simply involve running a stored procedure. We used to schedule these using sql server jobs, but moved away from it to instead call the procedures from a .Net program.

This allowed us to keep all our scheduled tasks in one place. It also allowed us to build better logging functionality into the .Net program that calls the procedures. The stored procedures will use the sql print and raiserror functions, and the .Net program will receive and log those. What we learned was that CommandType.StoredProcedure will always buffer these messages into batches of about 50. The .Net code wouldn't see any log events until the procedure finished or flushed the buffer no matter what options you set on the connection or what you do in your sql. CommandType.Text fixed this.

As a side issue, I'd use explicit types with your query parameters. Letting .Net try to infer your parameter types can cause issues in some situations.

link|flag
Any examples on the implicit typing issue? I've heard that one a few times, but never seen it. – Lurker Indeed Mar 13 at 18:25
Say you have an index on a varchar column. .Net will assume nvarchar and not be able to use the index. – Joel Coehoorn Mar 13 at 18:31
Following that...so if I have a stored proc with a varchar argument, and I pass a string in, what happens? – Lurker Indeed Mar 13 at 18:37
It's less of an impact for SPs than for adhoc queries. SQL Server will just do an extra conversion from nvarchar to varchar once, rather than scrap a whole index. But it's still bad. Take datetime: if .Net gets a datetime column wrong and sql server can't implicitly convert, you've got a problem. – Joel Coehoorn Mar 13 at 18:44
[continued] I haven't personally seen that last example because I always use explicit types on my query parameters, but I know it's possible. – Joel Coehoorn Mar 13 at 18:46
show 1 more comment
vote up 0 vote down

Because it would annoy the hell out of me....

:)

link|flag
vote up 2 vote down

It's cleaner.

You're calling a stored procedure, why not just use the CommandType.StoredProcedure?

link|flag
Because I'm writing a DB layer that allows using a parameter array for arguments. – Lurker Indeed Mar 13 at 18:04
+1 - CLARITY is the magic word for any long-term project which needs to be concertned with things like maintainability! :) – marc_s Mar 13 at 18:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.