I'm not interested in Spring/JPA etc. I like straight up JDBC/ODBC.
I was wondering what are the good (actually production ready) tools to enable taking a database schema and generating objects/daos that fetch/update them? I am intersted in Java and C++. I am interested in ramping up more on C++ in order to get away from all of this Spring/Maven/Hibernate madness and stop abstracting abstraction. I'd like to get down to the code. I like how I can investigate a generated JDBC dao and understand what's going on with my particular transaction isolation level. I like actually being able to debug tricky deadlocks because I can understand simple JDBC code. That aside, I'm just looking for some good code generation tools for Java/C++ that make production quality Daos.
This is a great tool, but it only works with java. http://www.codefutures.com/products/firestorm/
By the way, why is it that the Dao/POJO/POCO model as prevalent in the C++ world. It makes understanding code so much easier!