Tagged Questions
0
votes
1answer
230 views
Directly importing java object into mysql table with columns being the object's variables
Let's say I have a Java object that with variables x, y, and z and I would like to automatically import it into a MySQL database table with columns id, x, y, and z. Is there an easy way I can ...
0
votes
1answer
156 views
Is this a good approach for a custom object-relational mapping in Java?
I'm developing a sample Java application that uses Oracle's built-in "HR" database schema. I'd like to treat table rows as Java objects. One of the tables in the HR schema, EMPLOYEES, is ...