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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

website hosted by other company

Status
Not open for further replies.

rry2k

Programmer
Jun 28, 2001
678
US
Hi,
Our website is hosted by another company so my database resides on their server. I would like to be able to update the database on my server when updates are sent from the web. Is there a way to do an auto FTP in code?

Thanks..Russ
 
Well, if you are using SQL Server, then you can set up a trigger that can do that... I have heard that Access has a "pseudo-trigger" that you could probably set up to do such a thing --

The "best" way that I have found to do this is to set up intranet interfaces to UPDATE, DELETE, INSERT, etc... new data to the database, and then, simulateously, do the same UPDATE, DELETE, INSERT on the web version of the database -- running the exact same procedures on both databases at the same time -- it will ensure that the databases stay in sync.

:)
Paul Prewett
penny.gif
penny.gif
 
Hi,

I'm using access so I need another idea.

thanks..Russ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top