| Author |
populating 2-D array dynamically with JTable
|
sand maverick
Greenhorn
Joined: Nov 15, 2009
Posts: 2
|
|
|
hiiii........i want to populate a 2-D array using database which will be shown in a swing application using JTable.....i am not getting able to populate 2-d array ...is there any method like fill() for this purpose....
|
 |
Rob Camick
Ranch Hand
Joined: Jun 13, 2009
Posts: 1788
|
|
Well, you should not be using a 2D array for this purpose. You don't know how many rows are in your database so you don't know how big to make the array.
Instead you should be using a Vector of Vectors. The main Vector is used to hold the rows of data. Then for each row in the ResultSet you create another Vector and get all the value for that row. Then you add the row vector to the main vector.
|
 |
 |
|
|
subject: populating 2-D array dynamically with JTable
|
|
|