Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In MS Access QBE if I paste the following SQL, it works correctly and I get 2 records back-

SELECT [tmp_binning].[bn_faibash] FROM [tmp_binning] WHERE key2='0210043-HOU-STOR' ORDER BY [tmp_binning].[bn_faibash];

But if I programmatically run the same query in VBA from an ADO object I get (incorrectly) no records. If I change the SQL to remove brackets around the field name, it does correctly return the 2 records in VBA ADO.

SELECT [tmp_binning].bn_faibash FROM [tmp_binning] WHERE key2='0210043-HOU-STOR' ORDER BY [tmp_binning].bn_faibash;

I've been unsuccessful googling to figure why this happens on my own, can anyone tell me why?

Thanks.

share|improve this question
1  
Who cares why the syntax is different? Every flavor of SQL is a little different. SQL Server T-SQL is different from Oracle is different from DB2 is different from Teradata is different from My SQL. – DOK Dec 22 '10 at 20:58
Uh, it's not using a different SQL dialect, just a different interface. It shouldn't be different. But, again, this is yet another argument for using naming conventions that never require brackets. It's also, in my opinion, an argument for never using ADO. – David-W-Fenton Dec 24 '10 at 2:31
@DOK, I care that I understand why strange discrepancies happen in a tool that I am using, and whether it is my error or a strange glitch. Also it isn't a different dialect as David pointed out. @David, I also don't like naming conventions that require spaces, but I am supporting a previously written tool that would take a lot of work to remove all the bad prior practices like this. Do you feel like DAO is more reliable than ADO? Thanks. – Colin Dec 24 '10 at 4:08
For working with Jet/ACE data from Access, hands down DAO is the proper interface (and always has been). From outside Access, it depends on the tools you're using whether ADO or DAO is the best choice. Classic ADO is dead on all platforms, so I would be wary of using it in any environment. – David-W-Fenton Dec 26 '10 at 0:49
@David-W-Fenton I do not think that is quite true: bytes.com/topic/access/answers/458870-ado-dead-2-a – Remou Dec 26 '10 at 0:59
show 5 more comments

1 Answer

First, the brackets aren't required, either in the in Access UI or via ADO. Simply omit them in all environments and the problem should go away. (If it is the Access QBE thing that is adding the brackets then consider another tool or hand crafting your SQL code!)

Second, even with the brackets I can't reproduce the error using your SQL code e.g.

Sub gjskdjs()

  On Error Resume Next
  Kill Environ$("temp") & "\DropMe.mdb"
  On Error GoTo 0

  Dim cat
  Set cat = CreateObject("ADOX.Catalog")
  With cat
    .Create _
        "Provider=Microsoft.Jet.OLEDB.4.0;" & _
        "Data Source=" & _
        Environ$("temp") & "\DropMe.mdb"
    With .ActiveConnection

      Dim Sql As String


      Sql = _
          "CREATE TABLE tmp_binning" & vbCr & "(" & vbCr & " bn_faibash VARCHAR(255)," & _
          " " & vbCr & " key2 VARCHAR(255)" & vbCr & ");"
      .Execute Sql

      Sql = _
          "INSERT INTO tmp_binning (bn_faibash, key2)" & _
          " VALUES ('002', '0210043-HOU-STOR');"
      .Execute Sql

      Sql = _
          "INSERT INTO tmp_binning (bn_faibash, key2)" & _
          " VALUES ('001', '0210043-HOU-STOR');"
      .Execute Sql

      Sql = _
          "SELECT [tmp_binning].bn_faibash " & vbCr & "  FROM" & _
          " [tmp_binning] " & vbCr & " WHERE key2 = '0210043-HOU-STOR'" & _
          " " & vbCr & " ORDER " & vbCr & "    BY [tmp_binning].bn_faibash;"
      Dim rs
      Set rs = .Execute(Sql)
      MsgBox rs.GetString
    End With
    Set .ActiveConnection = Nothing
  End With
End Sub

Consider posting your schema as SQL DDL with sample data.

share|improve this answer
This was initially part of a VBA function I was trying to abstract out to use with multiple tables, some unfortunately have spaces in the table or field name. So the brackets are required unless I spend a lot of time revising out all the spaces in the many tables, fields, and VBA functions. When I got erroneous results from the VBA function, I took one example of the SQL it would run, and found it worked fine in QBE. I discovered if the brackets around the field names were removed in VBA, it worked fine. I will try to write up code to recreate the DB but it may take a little bit. Thanks. – Colin Dec 24 '10 at 4:26
1  
Have you considered creating a saved QueryDef that aliases the problematic table/field names to ones that don't require brackets, and then using that? I'm not sure if it would bypass the error you're encountering, but if I had to do what you're describing, I'd consider it. – David-W-Fenton Dec 28 '10 at 2:22
@David-W-Fenton: if you are suggesting creating a VIEW to rename the columns that have spaces then it sounds good to me. But QueryDef is a DAO object and proposing a conversion from ADO to DAO is not appropriate. – onedaywhen Jan 6 '11 at 8:45
2  
@onedaywhen: I have to support David Fenton here. He is simply arguing that one should use the terminology conventions of the Access environment when discussing the Access environment. To use the term View in that environment is to introduce a foreign term. Also, a cursory Google search for jet querydef yielded this as the first result (technet.microsoft.com/en-us/library/cc966376.aspx) which includes the text "For information about creating QueryDef objects, see the "Microsoft Jet QueryDef Objects" section later in this chapter." – phoog Jan 30 '11 at 0:36
1  
You are wrong in asserting that your use of terminology is helpful to Access users. Perhaps some (or even many) will be familiar with non-Access terminology and will be able to figure out what you mean. But if you're answering an Access question, I think it would make sense to adopt the Access context and use Access terminology first (even if you also provide the foreign terms as clarification; or vice versa, for that matter). You're wrong that it's helpful to insist on foreign terminology -- it simply makes things less clear. – David-W-Fenton Feb 8 '11 at 4:55
show 28 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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