开发者

Desktop DB Application with Java

开发者 https://www.devze.com 2023-02-12 19:06 出处:网络
First of all, I\'m sorry for a long explanation. I need to develop a desktop app that will enable users to enter patients lab results for tracking diabetes treatment.

First of all, I'm sorry for a long explanation.

I need to develop a desktop app that will enable users to enter patients lab results for tracking diabetes treatment.

I usually code in php/mysql, but I'm not allowed to use it (my first choice was to use LAMP / XAMPP, but was told not to do so). I was told to use MS Access, as the easiest tool, but since I've never used it before, it gave me a lot of headache. Its wizards are great, but I needed to use data from several tables in my forms, and was simply unable to efficiently do so.

So, here is my question: What sort of db can I use with Java to create such an Application? As I said, I'm most comfortable with PHP/MYSQL combination, but during my studies I also used Java quite a lot. If I could find some sort of 'template' for such an application, I could probably create this easily.

I found this http://netbeans.org/kb/docs/java/gui-db.html using google. How complicated is this?

I need to create this ASAP, since I need to get this App to a team of medical staff, since I need this data to use as datasets for my MSc thesis (related to case based reasoning). I'm really behind schedule here :). And someone will probably break my neck if I don't develop i开发者_如何学Pythont in a few days and start working on a theoretical part of my thesis.

Thank you in advance.


Okay, this one is near and dear having just been diagnosed as pre-diabetic.

What's not completely clear from your description is if you are keeping a separate database for each instance of the app, or are you sharing the data in one big remote database?

And how much data are you expecting?

If it's just for each instance, then any old database will work; the lightest weight one is actually probably sqlite3, but since you're in a hurry and used to LAMP, mysql will certainly work.

For remote data, go with mysql.

Either way around, there are plenty of ways to connect to the database, most all of them based on JDBC. It seems like you basiucally need two tables: patient, and labs. Patient will be something like <name,dob,ssan,address>, and labs something like <ssan, labtype, value, units>. SSAN would be the key and a record would be something like

 123-45-6789|A1C| 6.0|pct glucolated

In that case, I'd just make the tables, have two forms with the data, and don't try for anything too fancy.

Update

Okay, from your comments, yes, either use Derby or just use text files. Do you need any particularly complicated queries? In the Old Days we would just have made something like a CSV file and read it into memory.

Oh, and look into Java Web Start for distributing the app.


You can use Java to connect to a database via JDBC. Check out this tutorial. http://download.oracle.com/javase/tutorial/jdbc/index.html. You can use mySQL as your database. You can also use embedded databases such as derby which don't require an external database application.


Here are 2 tutoriala how to build CRUD application on top of the NetBeans Platform (a Swing-based RCP):

http://platform.netbeans.org/tutorials/nbm-maven-crud.html

http://platform.netbeans.org/tutorials/nbm-crud.html

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号