Ulf Dittmer wrote:No. JNLP is an app distribution mechanism, not a DB management mechanism. If the remote DB isn't running, then there's nothing the app can do about that.
Bartek Myszkowski wrote:corrected source:Explanation: tb.setDefaultRenderer(tb.getColumnClass(0),renderer_right); sets renderer for specified column class (not column index!) You only take column class from column 0, next in for-loop class is tb.getColumnClass(i) but all column classes are the same so the same renderer will be used everywhere. Check what will happen when You put tb.setDefaultRenderer(tb.getColumnClass(0),renderer_right); after for-loop.>
Peter Johnson wrote:Is JDO even on the radar screen any more? I recall that it was a fairly big thing a few years back, but ever since Java EE 5 went with using ORM tools such as Hibernate for JPA, JDO seems to disappeared. Are you sure you want to learn a technology that is pretty much deprecated?
Campbell Ritchie wrote:Moving to our databases forum. Don't know about JDO, but have you seen the JDBC part of the Java™ Tutorials?
Michael Dunn wrote:System.out.println(c[i].getClass().getName());