How to leave a persistent CRUD? [closed]

-2

I made a simple CRUD, and wanted to leave his data saved, so when I open Netbeans is all information saved.

    
asked by anonymous 19.04.2014 / 22:25

1 answer

4

You will need a database to save the information. If it is a robust application, I recommend postgresql with the pgAdmin along with pgModeler to make relationships visually. Now if you prefer you can use a very fast database, I recommend MySQL using the Workbench.

I advise using JPA as the API, which is a convention of how you should implement your providers . In this case I recommend Hibernate.

Do not be in a hurry to learn, learn the concepts in a solid way. I'm currently studying all this as well.

    
19.04.2014 / 22:55