vote up 0 vote down star

I'm a newbie to swing development.

I have a swing app that needs to access data from a remote sql database. The users of the app are all located in our office.

Is it bad practice to access the database directly from the swing app?

Should I put database facing code into an rmi server?

flag

80% accept rate
The question is vague. Are you asking if it's okay to use JDBC in your Swing action classes? Or are you asking if you should interpose another server running some other component between your swing app server and the database server? – S.Lott Nov 4 '08 at 20:58
I'm asking if I should interpose another server running some other component between your swing app server and the database server. – Ben Noland Nov 4 '08 at 21:16

3 Answers

vote up 1 vote down check

Not necessarily, but you'll want to 'layer out' the data access code in your application to make it easier to do later. It will also tend to make the rest of the application more maintainable.

link|flag
vote up 0 vote down

Do you have a plan for dealing with concurrent access to the same records in the database? It is something you will have to deal with, so if not from within the code, having all instances of the Swing application accessing the data via a central (i.e. your RMI server) location would make this much easier.

link|flag
No, it's read only. – Ben Noland Nov 4 '08 at 20:56
The just tier your Swing application so that all your data access can be factored out later if you need to, and stop there. – Elie Nov 4 '08 at 21:01
vote up 0 vote down

It's not nice to have UI/business/and database logic all in one place. I would certainly recommend having a database access layer, which would allow minimum changes if, for example, you have to change databases.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.