On Fri, May 29, 2009 at 11:03 AM, Daniel Toffetti <dto...@yahoo.com.ar> wrote: > Out of curiosity, does the practice of building medium to > complex queries and mixed batches of updates and deletes within > stores procedures, for optimum DB performance, has been completely > deprecated ???
I personally hate putting stuff in the database, because it just leads to troubles, based on my experience. It's harder to unit test your code if too much stuff is in the database. I like to use in-memory (HSQLDB) databases during unit tests and you can't rely on those stored procedures being around during your unit test. Also, in some organizations, DBAs maintain very tight control over things like stored procedures in their databases. It can become a bottleneck. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org