vote up 0 vote down star

Is there a way to tell Enterprise Library to use prepared statements? If so, how?

flag

By prepared statements, do you mean parameterized sql statements? – Bryant Oct 10 '08 at 21:43
No, I do mean prepared statements. – Chris Lively Oct 12 '08 at 17:38

2 Answers

vote up 1 vote down check

The short answer is to use DbCommand.Prepare();

The long answer is that it is completely irrelevant, and results in a noop, when calling stored procedures.

Also, it should only really be used when the code is about to make several calls (as in a loop) with the same query.

link|flag
vote up 0 vote down

You should be able to obtain the sqlConnection / Command being executed -> can't you set the relevant setting here before executing ??

Hope I've got the right end of the stick...

link|flag

Your Answer

Get an OpenID
or

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