I have a database I need to access using stored procedures. So for each stored procedure's return type, I want to create a entity.
Are there any tools pout there that can generate these entity classes for me? preferred even a tool that can generate the code to retrieve the dataset from the stored procedure.
I am all for DRY principle, so if I can generate this, it would be great!
I am not interested in ORM, JPA, Hibernate or what-so-ever because I cannot access the tables anyways.
The DB we use is PostgreSQL.