Hi I am stuck in a problem.

i am actually populating a jtable dynamically using the ResultTableModel. The table gets populated correctly for the first time but next time when i try to run it then either i get the same data or blank data. I am pasting the code below and would request some of you to help out.

Actually, the table starts getting populated with the correct data second time also but then when it is fetching records from Method: getValueAt( int row, int column ) and reaches the last row and last column it goes back to Method: getRowCount() and here is where everything fails and the table blanksout.

The code is as follows:

/* Table Model
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Business_Int;
import java.sql.*;
import java.util.*;
import java.util.EventObject;  // javax.swing.event.TableModelEvent
import javax.swing.event.TableModelEvent;
import javax.swing.*;
import javax.swing.event.TableModelListener;
import javax.swing.table.AbstractTableModel;
/**
 *
 * @author lokesh
 */
public class RSTModel extends AbstractTableModel {
private Statement st;
private ResultSet rs;
private ResultSetMetaData metaData;
private int numberOfRows, numberOfCols;
private PreparedStatement ps;
private Connection con;
private String itemgrp, query;
  // initialize resultSet and obtain its meta data object;
  // determine number of rows     
public RSTModel(String itemgrp, String query, Connection con ) throws SQLException, ClassNotFoundException
{
     // load database driver class
        this.con = con;
        this.itemgrp = itemgrp;
        this.query = query;
     // set query and execute it
        st = con.createStatement( 
        ResultSet.TYPE_SCROLL_INSENSITIVE,
        ResultSet.CONCUR_READ_ONLY 
        );  
        setQuery(query,itemgrp);     
  }
  // get class that represents column type    
public Class getColumnClass( int column )
  {
     // determine Java class of column
     try {             
        String className = metaData.getColumnClassName( column + 1 );     
        // return Class object that represents className
        return Class.forName( className );
     }     
     // catch SQLExceptions and ClassNotFoundExceptions
     catch ( Exception exception ) {
        exception.printStackTrace();
     }     
     // if problems occur above, assume type Object 
     return Object.class;
  }
  // get number of columns in ResultSet

public int getColumnCount() 
  {  
      int cc = 0;
     // determine number of columns
     try {
        return cc = metaData.getColumnCount();
     }
      // catch SQLExceptions and print error message
      catch ( SQLException sqlException ) {
         sqlException.printStackTrace();
      }     
      // if problems occur above, return 0 for number of columns
      return cc;
   }
   // get name of a particular column in ResultSet
public String getColumnName( int column )
   { 
       String c = null;
      // determine column name
      try {
         c = metaData.getColumnName( column + 1 );
          return  c; 
      }     
      // catch SQLExceptions and print error message
      catch ( SQLException sqlException ) {
         sqlException.printStackTrace();
      }     
      // if problems, return empty string for column name
      return c;
   }
   // return number of rows in ResultSet
public int getRowCount() 
   { 
      return numberOfRows;
   }
   // obtain value in particular row and column
public Object getValueAt( int row, int column )
   { 
       Object r = null;
      // obtain a value at specified ResultSet row and column
      try {
         int sum = 0;
         int x = row +1;
         int y = column+1;  
         if (x == numberOfRows && y == numberOfCols)
         {
            r = rs.getObject(column + 1 );
         }
         else 
         {
             rs.absolute(row + 1);
             r = rs.getObject(column + 1 );               
         }
         return r;    
      }     
      // catch SQLExceptions and print error message
      catch ( Exception e ) {
         e.printStackTrace();
      }
    return r;
      // if problems, return empty string object
      //fireTableCellUpdated(row,column);  // F
      //return r;
   }
   // close Statement and Connection
  public void close() {
   try { rs.getStatement().close(); }
   catch(SQLException e) {e.printStackTrace();}
   }
protected void finalize()
   {
      // close Statement and Connection
      try {
         con.close();
         System.out.println("connection closed");
      }     
      // catch SQLExceptions and print error message
      catch ( SQLException sqlException ) {              
        sqlException.printStackTrace();
      }
   }     
   // *******set new database query string*********
public void setQuery(String query, String itemgrp) throws SQLException 
   {
      // specify query and execute it
      //resultSet = statement.executeQuery( query );
         if (itemgrp.equals(""))
         {
                        ps = con.prepareStatement(query);
                        rs = ps.executeQuery(); 
         }
         else
         {
                        ps = con.prepareStatement(query);
                        ps.setString(1, itemgrp); 
                        rs = ps.executeQuery(); 
         } 
      // obtain meta data for ResultSet
      metaData = rs.getMetaData();
      // determine number of rows in ResultSet
      rs.last();                   // move to last row
      numberOfRows = rs.getRow();  // get row number   
      numberOfCols = metaData.getColumnCount();          
      // notify JTable that model has changed
      fireTableStructureChanged();  
      fireTableChanged(null);          
   }

public void tableChanged(TableModelEvent e)
{   fireTableChanged(e);  }     
} 

Method that is calling the model------

public void oStock(String itemgrp, int val)
    {
        Conn_1 con1 = new Conn_1();
        con = con1.connect();
        this.itemgrp = itemgrp;
        String query = "";
        int r = 0;
        int t, sum;
        sum =0;
        PreparedStatement ps;
        try
        {
            if (itemgrp.equals(""))
                    {   
                        query = "SELECT DISTINCT Master1_1.Name AS ITEM_GROUP, Master1.Name AS ITEM_CODE, Tran4.D1 AS QUANTITY, Master1_2.Name AS UNIT_SIZE FROM Master1 AS Master1_2 INNER JOIN (Master1 AS Master1_1 INNER JOIN (Tran4 INNER JOIN (Help1 INNER JOIN Master1 ON Help1.Code = Master1.Code) ON Tran4.MasterCode1 = Master1.Code) ON Master1_1.Code = Master1.ParentGrp) ON Master1_2.Code = Master1.CM1 WHERE (((Help1.RecType)=3)) ORDER BY Master1_1.Name,Master1.Name";                 
                    }
            else
                    {
                        query = "SELECT DISTINCT Master1_1.Name AS ITEM_GROUP, Master1.Name AS ITEM_CODE, Tran4.D1 AS QUANTITY, Master1_2.Name AS UNIT_SIZE FROM Master1 AS Master1_2 INNER JOIN (Master1 AS Master1_1 INNER JOIN (Tran4 INNER JOIN (Help1 INNER JOIN Master1 ON Help1.Code = Master1.Code) ON Tran4.MasterCode1 = Master1.Code) ON Master1_1.Code = Master1.ParentGrp) ON Master1_2.Code = Master1.CM1 WHERE (((Help1.RecType)=3)AND ((Master1_1.Name) IN (?))) ORDER BY Master1_1.Name,Master1.Name";    
                    }
        }     
        catch(Exception e)
        {
            System.out.println("Not able to execute query"+ e.getMessage());
        } 
        try{
        jifa.setPreferredSize(getSize());
        add(l1);
        l1.setText("Total Quantity = "+ sum);
        l1.setVisible(true);
        jsp1 = new JScrollPane();
        jsp1.setSize(875,500);
        jsp1.setPreferredSize(getPreferredSize());
        jsp1.setBackground(bg);
        jsp1.setVisible(true);
        jsp1.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        jifa.add(jsp1);
        if (valo == 0)
        {
            dtb1 = new RSTModel(itemgrp,query,con);
            jtb1 = new JTable(dtb1);    
        }
        else if (valo ==1)
        {
            dtb1.setQuery(query, itemgrp);
        }
        jsp1.add(jtb1);
        jsp1.setViewportView(jtb1);
        jtb1.setGridColor(Color.BLACK);
        jtb1.setShowGrid(true);
        jtb1.setPreferredScrollableViewportSize(getPreferredSize());
        jtb1.setVisible(true);     
        //dtb1.finalize();
        }            
        catch(Exception e)
        {
            System.out.println("Not able to execute update jtable"+ e.getMessage());
            e.printStackTrace();

        }
    }
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.