i have gui built suing swing and gui, can anyone point me to tutorials etc on how to incorporatea jdbc connection so that data from dbase can be displayed within gui ?
yes i've looked at jdbc a bit and set up a connection by compiling a class etc
its more to do with incorporating the class which makes the connection to the dbase. for example if i'm within a swing / awt JPanel class do simple instantiate a constructor for the jdbc connector class ?
My suggestion would be to become familiar with the MVC model in which your data layer (the "M") is completely agnostic of the UI layer. The "inegrating" should be very loosely coupled.