Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
VB6 FTP Access connection string
Name: Anthony Arde Date: December 2, 2005 at 01:46:36 Pacific OS: win Xp Pro Sp2 CPU/Ram: 3.2 P4
Comment:
Hi there i`m in need of some help with a connection string to an access db on an ftp site that has a usr name and pass word...is this possible??? or does it have to be http? please help. this is what i have so far but this is for http not ftp... Conn2.ConnectionString = "Provider=MS Remote;" & _ "Remote Server=ipaddressofmachine;" & _ "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=addressofdatabaseonserver;Persist Security Info=False"
Name: StuartS Date: December 2, 2005 at 02:22:55 Pacific
Reply:
You won't connect to remote data base via FTP. FTP works on a file basis, not records.
Doing it via HTTP depends on whether the host has made the facility available. Normally you send a request to the server. The server process the request and sends the data back to you in an HTML page.
Speak to whoever hots the database server, they will give you all the information you need.
Summary: OK im trying to connect my local machine to my local sql database in VB6 but the connection strings i`ve tried dont work, i have set ado 2.7 as a reference ,the sql service is running as server name "...
Summary: Hi there, please can someone help me out, i`m really having a tough time tring to connect to my remote mysql DB, this is the connection string i`m using : Conn3 = "DRIVER={MySQL ODBC 3.51 Driver};SERV...
Summary: i`m stuck please can someone help!!! this is my connection string at the moment, Set Conn3 = New ADODB.Connection Conn3.CursorLocation = adUseClient Conn3.ConnectionString = "DRIVER={MySQL ODBC...