문제

I have a Jdialog which contains JTextFields and a Save button.How do I create a database table which stores ProjectId, ProjectName and Description and store them locally?

도움이 되었습니까?

해결책

For something like this you could use SQLite and the relevant JDBC driver. Here'e a tutorial which will help http://www.tutorialspoint.com/sqlite/sqlite_java.htm

SQLite allows you to create a local database on the file system, so you won't need a database server to host it.

다른 팁

NetBeans Tutorial or Derby Database

There are two tutorials to add a database to you project in NetBeans.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top