Guys: I have written a program for tracking support calls but now need to load the results from the Derby DB. The fields are CLOBs and I have been able to save them to Derby and display them from Derby to a TextArea entry. However, I now need to display the CLOBs to a JTable entry. The below is a method I have so far done and it does load the Clobs but not as
string data. Instead I get "
org.apache.derby.impl.jdbc.EmbedClob@55443010 ,
org.apache.derby.impl.jdbc.EmbedClob@3e784536, and so on" for each field entry which, I understand to be the definitions of the Clobs as stored in the database. Loading directly from the database as a ResultSet is pretty straight forward-- but loading it using DbUtils doesn't allow for converting to a string text. I need to be able to display the text of each CLOB within the JTable. Any help would be appreciated. I fully understand that outside of Netbeans one can write great code --however, I need to continue using the GUI Form Displays. The below method is run from a jbutton (external to the method) and it displays the results to a table jtbl_CategoryList.