vote up 0 vote down star

Hi all,

Does anyone have any idea how to use count(*) in a dynamic query with the Enterprise Library Data Access Application Block?

I am using:

Public Shared Function selectCount(ByVal code As String) As Integer
    Dim query As String = "SELECT COUNT(*) " & _
                          "FROM " & _
                            "Data " & _
                          "WHERE " & _
                            "Code = '" & code & "'"
    Dim db As Database = DatabaseFactory.CreateDatabase()
    Return db.ExecuteScalar(System.Data.CommandType.Text, query)
End Function

This error gets thrown:

The ITransactionLocal interface is not supported by the 'Microsoft.Jet.OLEDB.4.0' provider. Local transactions are unavailable with the current provider.

flag

40% accept rate
Do other queries work? Using the same bit of code just without count()? – spoon16 Aug 31 at 7:18
I looked up the error message and found that by adding "OLE DB Services=-4" to my connection string cleared up the problem while using the code above. So it seems my code was not technically wrong, just some problem with the connection string (although it was working fine before!) – Andrew Aug 31 at 22:39

2 Answers

vote up 2 vote down

Have you tried creating an SQLCommand and then use Cmd.ExecuteScalar?

Also, you're using a variable in your query! This definitely requires a parameterized SQLCommand just to avoid SQL Code injection! Doesn't matter if you can guarantee it's safe or not. Best practice is to always use parameters instead. (Why? Because another developer who peeks at your code will learn by example, and you don't want them to learn bad practices!)

Have you tried adding "OLE DB Services=-4" to your connection string already? I've heard that this might solve this transaction error. :-) (Well, I admit, I've edited this answer after reading your comment.) Anyway, this option is related to transaction enlistment of the database. You're overriding the setting by adding this value. (Yeah, I shamelessly googled for it.) It seems that your OLE DB services have been modified or perhaps they're just different because you're on a different system.

link|flag
You're absolutely right. Thanks for the advice; I'll be changing all of my queries to use parameters now :D – Andrew Aug 31 at 22:40
vote up 0 vote down check

I looked up the error message and found that by adding "OLE DB Services=-4" to my connection string cleared up the problem while using the code above. So it seems my code was not technically wrong, just some problem with the connection string (although it was working fine before!)

link|flag
Why did you create and accept you own answer? Why not accept Workshop Alex's answer, it is correct. – Charles Conway Sep 19 at 9:15
Alex's answer was correct. However, it was not the root cause of my problem. My implementation also worked, but not until I added "OLE DB Service=-4" to the connection string, which is why I created my own answer in case anybody had the same problem for the same reason. If people feel this is not the correct way to do this, I am happy to change the answer to Alex's. – Andrew Sep 20 at 12:11

Your Answer

Get an OpenID
or

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