online space for mdb Access database file

  • Thread starter Thread starter gpl666666
  • Start date Start date
G

gpl666666

Does anyone know any "free" online space which allows user to upload
mdb Access database file?
 
If you're using this for a web site then you're better off using a web host
that supports this. If you host it somewhere besides your web you'll need a
way to reference it from a remote server and the database would need to be
in a folder that has the correct permissions (ex: read/write) so it could be
accessed.

Also, if your Access database is on another server, you will need to ensure
that Jet 4.0 is installed on the remote server, and that you know the
*local* location of the MDB file on that server. Once you have those two
vital pieces, you can use a connection string like this:

<%
cst = "Provider=MS Remote;" &_
"Remote Server=http://<x.x.x.x>;" &_
"Remote Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=c:\inetpub\wwwroot\file1.mdb;"
set conn = CreateObject("ADODB.Connection")
conn.open cst
%>

So just uploading it to anywhere isn't going to help.
 
Back
Top