Question
Getting a null. prefix in my table names
I try to build a dynamic web page in ASP using Dreamweaver
CS3 in a Windows XP SP2 Pro x63 environment. I have an .accdb
database, created with Microsoft Office Access 2007, and this
Custom Connection String:
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Server.MapPath("/blog/database/blog.accdb")
The above connection string gives me a "Connection was made successfully" message when I use the Test button. But when I go to create a Recordset (Query) and I choose my connection, I notice that all my table names in the "Table:" field get a null. prefix. For example, a table called "tblUsers" becomes "null.tblUsers" and so on. Is there any idea why is this happening? Thanks in advance.
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Server.MapPath("/blog/database/blog.accdb")
The above connection string gives me a "Connection was made successfully" message when I use the Test button. But when I go to create a Recordset (Query) and I choose my connection, I notice that all my table names in the "Table:" field get a null. prefix. For example, a table called "tblUsers" becomes "null.tblUsers" and so on. Is there any idea why is this happening? Thanks in advance.
