Skip to content

A simple java orm to training reflection and database concepts

License

Notifications You must be signed in to change notification settings

thallesfreitaszup/javaorm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

javaorm

A simple java orm to training reflection and database concepts

Example

        UserTest userTest = new UserTest();
        userTest.setName("thalles");
        DB db = DB.Open(url, Driver.POSTGRES, postgresContainer.getUsername(), postgresContainer.getPassword());
        db.CreateTable(userTest);
        db.Insert(userTest); 

About

A simple java orm to training reflection and database concepts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages