vote up 1 vote down star

In .Net, is there any functional difference between creating a new SqlCommand object and attaching a SqlConnection to it and calling CreateCommand on an existing SqlConnection object?

flag

80% accept rate

3 Answers

vote up 5 vote down check

No, they are the same thing.

I disassembled SqlConnection.CreateCommand and found this:

public SqlCommand CreateCommand()
{
        return new SqlCommand(null, this);
}

which proves that they really are the same thing.

link|flag
vote up 1 vote down

They do the same thing. The rationale behind SqlConnection.CreateCommand is to implement the factory pattern.

link|flag
vote up 0 vote down

Functionally they are exactly the same.

However, SqlConnection.CreateCommand lets you be more agnostic about what type of DB you are using. For example instead of passing a SqlConnection instance around you could pass it around as a DbConnection which would yield a DbCommand.

link|flag

Your Answer

Get an OpenID
or

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