Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connect to Remote Database with ADOCE?

Status
Not open for further replies.

riznick

MIS
Oct 4, 2002
2
US
Is it possible to connect to a remote database with ADOCE? The SQLCE method is only a workaround, and i would like to be able to bypass it.

 
Hello,

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.

If possible, please help me at the earliest.

Thanks & Regards,
Neeraj Mirani
 
I've had a heck of a time cracking a CDB file I ran across. I finally realized I could query it directly. Check out
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!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top