I am developing a web application in Pocket PC using ASP and Pocket Access Database. Could anyone tell me the connection string to use in ASP to connect pocket access database.
I have used microsoft access driver name in the connection string while connecting from ASP to Microsoft Access Database on a Desktop PC.
Could anyone tell me the name of the Pocket Access Driver to use in the connection string in ASP on a Pocket PC. I would also appreciate if someone knows a way other than using Pocket Access Driver.
This has the specifications for creating your ADOCE connections and recordsets.
Dim connDatabase
Set connDatabase = CreateObject(“ADOCE.Connection.3.1”)
connDatabase.ConnectionString = “data source = \MyDatabase.cdb”
connDatabase.Open
Now I've not had good luck getting my windows script host file (.VBS) to accept that (“ADOCE.Connection.3.1”) connection. Anyone have any advise on that?
Thanks!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.