Hello,
I have created a view on SQL Server 2008, which I am accessing through ODBC in my
Java code. The view has around 20 columns, and around 6,000 records. It runs in under a second within SQL Server.
However, when I loop through the ResultSet to populate a DefaultTableModel, which feeds a JTable, it is horribly slow. It actually takes about 8 to 12 seconds just to return 100 records or so, which renders the application just about useless.
I tried the approach outlined here:
http://tips4java.wordpress.com/2009/03/12/table-from-database/ , but it actually seemed to run even slower.
My approach/pseudo code right now is:
I think this is a pretty standard approach, right? Or hopefully I am doing something very wrong to cause a 1-second view to take more than 10 minutes to load into a JTable? I'm pretty stuck. Any advice/guidance is very much appreciated.
Cheers,
Brian