资 源 简 介
First create all the tables for your database.
Then point Crudder to your database and provide table name.
It will generate a class with JDBC source code for your usage.
This is something like ORM.
With the help of crudder system, there is no need to write complex SQL, crudder generates the sql syntax for you for
Create- Insert Records to that table.
Read - Select Query
Update- Update those tables.
Delete- Delete from those table.
Each object of that class represents a row of your SQL. And just call the necessary METHODS(CRUD METHODS) and your ORM can be achieved.
This project is however incomplete. We need people to contribute and add some more enhancements to it.