java - First database desktop application -


I am a great newbie for Java (learning again) and I am trying to create a database desktop application.

I did the same kind of application (student management system) without adequate knowledge before my college project (2 years ago). OOP

  1. I had a JFrame to log in first, and when logged in, the login frame will close the second frame.
  2. Navigate one frame to act as the control panel (similar to the dashboard).
  3. The other frame will provide a specific interface and will be closed when the control panel is shown and the closed panel is closed.
  4. Abstract table model was used to bring the query to the class and display the result of JTable or some table. In short, I had so many frames that would hide and show, and Display table

    Honestly, at that time, whatever was in the book, nothing was known to me that I was not troubled to investigate the code of every line, and still no such application have seen.

    My question is, having a waterfall of JFrames, everything can be managed within one frame? Apart from this, I would be grateful to the suggestion of the frame (for such application) and any sample project (if any).

Comments