|
-
May 11th, 2006, 11:14 AM
#1
[2005] Opening database from FTP server without downloading it
elloooo
As the title says, I'd like to open a database file (access) from an FTP server without downloading it, is this possible?
Thank you!
-
May 11th, 2006, 11:23 AM
#2
Addicted Member
Re: [2005] Opening database from FTP server without downloading it
I think you may need to use windows scripting.
-
May 11th, 2006, 02:51 PM
#3
Re: [2005] Opening database from FTP server without downloading it
that sounds completely new to me, any examples?
-
May 12th, 2006, 12:22 AM
#4
Addicted Member
Re: [2005] Opening database from FTP server without downloading it
VB Code:
Sub btnExample_onclick()
dim wShell
set wshell = createobject("wscript.shell")
wshell.run ("msaccess ""O:\Databases\Databases\DatabaseName.mdb""")
wshell.visible=true
wshell.UserControl = True
set wshell = nothing
end sub
-
May 12th, 2006, 12:40 AM
#5
Re: [2005] Opening database from FTP server without downloading it
FTP stands for File Transfer Protocol. It is used for transferring files. I think that that says it all.
-
May 12th, 2006, 07:55 AM
#6
Re: [2005] Opening database from FTP server without downloading it
The reason I dont wanna download the database is that I dont wanna have to upload and overwrite the entire database file after just editing some small bits.
Since its linked to a website with users making changes a bit now and then, it would be devastating if my application overwrites something that a user had just changed.
-
May 12th, 2006, 09:13 AM
#7
Re: [2005] Opening database from FTP server without downloading it
This is not a job for FTP.
-
May 12th, 2006, 09:56 AM
#8
Lively Member
Re: [2005] Opening database from FTP server without downloading it
Can't you make a direct link to your accessdb in your connectionstring?
There is an easy way, there is a hard way and there is My way of doing things!
-
May 12th, 2006, 01:24 PM
#9
Re: [2005] Opening database from FTP server without downloading it
 Originally Posted by darktown
Can't you make a direct link to your accessdb in your connectionstring?
The problem is that I have to specify username and password in order to access the FTP server...
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
|