I have an iphone (jqtouch based) web app that uses cookies for authentication.The use flow is as follows :
If I pass an empty list into a JPA query, I get an error. For example: List<Municipality> municipalities = myDao.findAll();// returns empty list
I\'m working on a small (java) project where a website needs to maintain a (preferably comma-separated) list of registered e-mail addresses, 开发者_JAVA技巧nothing else, and be able to check if an add
I have a good half-dozen fixtures in my Rails test suite - some quite large - that represent static look-up tables in the database.Since their values theoretically don\'t change, I\'d like to save the
In my app, the user can save his input to disk. This is done with NSKeyedArchiver. Currently I simply name my files with a timestamp. But of course, the user may want to load one of them back in to ke
I am developing a Java servlet which calls an Oracle stored procedure.The stored procedure is likely to \"grow\" over time, and I have concerns the amount of time taken to \"display the results on a w
I\'ve been playing with Java Servlets and Ajax a bit, and I\'ve got a situation on which I would really appreciate advice.
I am writing a very simple application, for the iPhone. Unfortunately I am really a newbie. What I am trying to do is to save data at the end of a user experience. This data is really simple, only str
I\'d like to paginate through a randomly sorted list of ActiveRecord models (rows from MySQL database).
Currently I am using ViewData or TempData for object p开发者_开发技巧ersistance in my ASP.NET MVC application.