-1

I'm looking to make some requests to some pages I've made that submit data to a DB.

Using the game engine Unity, this is the best way to write to a DB. The WWWForm class makes it really snappy.

http://docs.unity3d.com/Documentation/ScriptReference/WWWForm.html

I'm not super familiar with Java, is there a similar kind of library or process built in? I want to write to this MySQL DB via the web services I've already created (just submit some form data with my POST request a la the WWWForm library).

Lex Li
  • 60,503
  • 9
  • 116
  • 147
Wuzseen
  • 687
  • 3
  • 14
  • 20

1 Answers1

0

There is something called JDBC Java Database Connectivity API. This is used to do all DB operations. But depending on your environment, there are flavors.

Check out JDBC tutorial

Kevin Rave
  • 13,876
  • 35
  • 109
  • 173