down vote
favorite<http://stackoverflow.com/questions/5729108/how-to-store-some-values-in-appengine-datastore-using-jdo#>
public class ServletCheckServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("text/plain");
PrintWriter pw=resp.getWriter();
String s1=req.getParameter("username");
String s2=req.getParameter("password");
* **//How to store these values in AppEngine Datastore using JDO***
}
}
Also, *I want to get these saved values from Data store using another
Servlet*
How to do this.....I followed as
here<http://code.google.com/appengine/docs/java/gettingstarted/usingdatastore.html>...but
i am not able understand that example....They are confusing....Please help
me to do this simply.....
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.