|
-
May 8th, 2013, 05:15 PM
#1
Thread Starter
Junior Member
VB 2010 and database on website
I have an application that connects to a database on my computer. What I want to do is host this database on my website. How would I go about changing the Data Source from a local file on my computer to a database on my personal website (hosted by GoDaddy)? The database is basically for saving the data of a character. The vb application will be the game that a user can install. I just want the data saved to a database on the website instead of on their local machine. Is this easily doable? It is an Access database(.accdb). Thank you.
-
May 8th, 2013, 06:00 PM
#2
Frenzied Member
Re: VB 2010 and database on website
-
May 9th, 2013, 01:14 AM
#3
Re: VB 2010 and database on website
Having looked at it, I'm not sure that biilboy's link will be of use to you. While it is possible to connect directly from a desktop app to a database on the internet (definitely with SQL Server, definitely NOT with Access, maybe with MySQL) it is generally not done because it is rightly considered a security risk. As such, many web hosts simply won't allow it. What you should do is create a web service that will be hosted and connect to the database internally. Your app can then communicate with that web service. You would still not use an Access database, which should really just be used in local, single-user scenarios.
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
|