Skip to content

chkrr00k/Beans2SQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Beans2SQL

A simple way to translate a java bean object into its own SQL query.

Example

Object o = new Persona();
BeanTranslator bt = new BeanTranslator();
bt.createTable(o);
bt.insertTable(o);
bt.deleteTable(o);
bt.selectTable(o);
bt.updateTable(o);
bt.deleteByIdTable(o);
bt.selectByIdTable(o);
bt.updateByIdTable(o);
bt.selectAllTable(o);
bt.dropTable(o);

About

A simple way to translate a java bean object into its own SQL query.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages