Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a game in Java, it is an applet. I want the user to create an account, and have it registered into a database. I know how to create a database on my computer, and do username and login checks, but how do I get the database online, so that users can login?

share|improve this question
1  
Why do you want to use MS-Access? – Tomalak Aug 27 '11 at 15:52
I'd use a web service, but that seems too simple. – bdares Aug 27 '11 at 15:53
1  
You could use MySQL/PostgreSQL, which are often provided to you by your webhoster? – Jacob Aug 27 '11 at 15:55
I am new to this idea of using a database online. I heard MS-Access was easy, but heckk. If they have a web service, that seems toooo simple. Tooo simple enough that I would use it. What web services are there? – Justin Aug 27 '11 at 15:55
Check out SimpleDb for an example: aws.amazon.com/simpledb – Horst Walter Aug 27 '11 at 16:07
show 4 more comments

1 Answer

up vote 2 down vote accepted

There are multiple ways, one is Jackcess. The examples are straight forward. An other way is to use an ODBC Jdbc driver.

I am not really sure what the applet's restrictions do have for an impact, so check this in advance. If you just need a simple data repository, think about something like SimpleDB, where you do not need an own server.

share|improve this answer
Well, I found a tutorial, it uses a driver. The driver connects to the MS-Access Database, but does that work online? – Justin Aug 27 '11 at 16:00
Depends pretty much on your scenario and where the database is located. As said above MS Access does not seem to be the best choice for that. Regarding the question, I would just try - it won't take long to write an example for this. – Horst Walter Aug 27 '11 at 16:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.