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

Remote Data Services (RDS)

Status
Not open for further replies.

hussux

Programmer
Jan 11, 2001
19
GB
Has anyone got any examples on how to implement RDS.

I need a way to access a database (Access) thats located on the internet by means of a visual basic application running on a client machine.

any help is greatful...

 
The trick is making the file available without risking your system.

High Risk:
Accessing the database directly involves sharing the file space it resides in with the world. Share the directory, and set your application to reference your database using the network file name \\Machine\Share\Path...mdb.

Lower Risk:
A safer, sometimes easier, alternative involves developing a web based interface giving you some filtering capabilities, although not quite 100% proof against threats it is leagues ahead of just sharing the file. Your application then sends web requests much like a web page form.


Either way, identifying server machine to the world remains your biggest problem.

Oh, the web method also removes the database type from the problem equasion. A web based database is surely destined to grow beyond Access's 1Gb file size limits, FAST.

Wil Mead
wmead@optonline.net

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top