|
-
June 27th, 2001, 06:32 AM
#1
VB Connection String Help wanted..........!!!!!!!!!!
Can i access my database (*.mdb file), which is on a free web site (http://geocities.com/XYZ/XYZ.mdb).
through Visual Basic 6.0.
If yes , what is the connection string required.
-
June 27th, 2001, 06:55 AM
#2
Re: VB Connection String Help wanted..........!!!!!!!!!!
Try this
Dim oconn as ADODB.Connection
set oconn = new ADODB.Connection
oconn.Open "Provider=MS Remote;" & _
"Remote Server=http://www.geocities.com;" & _
"Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=\XYZ\XYZ.mdb;", _
"admin", ""
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|