vote up 0 vote down star

Am using enterprise library data access application block... is there any performance impact of using System.Data.DbType Vs System.Data.SqlType?

And also, would like to know performance impact for the statement: DatabaseFactory.CreateDatabase("MyDB")

Vs

new SqlDatabase(myConnectionString);

Thanks.

flag

0% accept rate

2 Answers

vote up 3 vote down

The impact here is not one of performance but more explicitness versus flexibility. the DBType and DatabaseFactory methods are more flexible and allow you to flip the type of database you are using. You might see a small bit of perf in the other direction, but not enough to make your decision based on perf.

link|flag
vote up 1 vote down

Any performance difference will be neglible (especially compared with database accesses).

link|flag

Your Answer

Get an OpenID
or

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