Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4703771

REGRESSION: EXCEPTION_ACCESS_VIOLATION occured when attempt to execute a query

XMLWordPrintable

    • 02
    • x86
    • windows_98, windows_2000
    • Verified

      teQuery(JdbcOdbcStatement.java:253)
      at Vocab.executeRecSet(Vocab.java:151)
      at Vocab.getDefinitions(Vocab.java:109)
      at Vocab.main(Vocab.java:307)

      Dynamic libraries:
      0x00400000 - 0x00406000 C:\j2sdk1.4.0_01\bin\javaw.exe
      0x77F80000 - 0x77FFB000 C:\WINNT\System32\ntdll.dll
      0x77DB0000 - 0x77E0C000 C:\WINNT\system32\ADVAPI32.dll
      0x77E80000 - 0x77F35000 C:\WINNT\system32\KERNEL32.DLL
      0x77D40000 - 0x77DAD000 C:\WINNT\system32\RPCRT4.DLL
      0x77E10000 - 0x77E74000 C:\WINNT\system32\USER32.dll
      0x77F40000 - 0x77F7C000 C:\WINNT\system32\GDI32.DLL
      0x78000000 - 0x78046000 C:\WINNT\system32\MSVCRT.dll
      0x6D330000 - 0x6D445000 C:\j2sdk1.4.0_01\jre\bin\client\jvm.dll
      0x77570000 - 0x775A0000 C:\WINNT\System32\WINMM.dll
      0x6D1D0000 - 0x6D1D7000 C:\j2sdk1.4.0_01\jre\bin\hpi.dll
      0x6D300000 - 0x6D30D000 C:\j2sdk1.4.0_01\jre\bin\verify.dll
      0x6D210000 - 0x6D228000 C:\j2sdk1.4.0_01\jre\bin\java.dll
      0x6D320000 - 0x6D32D000 C:\j2sdk1.4.0_01\jre\bin\zip.dll
      0x6D000000 - 0x6D0F6000 C:\j2sdk1.4.0_01\jre\bin\awt.dll
      0x77800000 - 0x7781D000 C:\WINNT\System32\WINSPOOL.DRV
      0x75E60000 - 0x75E7A000 C:\WINNT\System32\IMM32.dll
      0x77A50000 - 0x77B3A000 C:\WINNT\system32\ole32.dll
      0x6D180000 - 0x6D1D0000 C:\j2sdk1.4.0_01\jre\bin\fontmanager.dll
      0x6D250000 - 0x6D25A000 C:\j2sdk1.4.0_01\jre\bin\JdbcOdbc.dll
      0x1F7B0000 - 0x1F7E1000 C:\WINNT\System32\ODBC32.dll
      0x71780000 - 0x7180A000 C:\WINNT\system32\COMCTL32.dll
      0x76B30000 - 0x76B6E000 C:\WINNT\system32\comdlg32.dll
      0x70BD0000 - 0x70C34000 C:\WINNT\system32\SHLWAPI.DLL
      0x782F0000 - 0x7852F000 C:\WINNT\system32\SHELL32.DLL
      0x1F850000 - 0x1F866000 C:\WINNT\System32\odbcint.dll
      0x1F8F0000 - 0x1F932000 C:\WINNT\System32\odbcjt32.dll
      0x1B000000 - 0x1B16F000 C:\WINNT\System32\msjet40.dll
      0x1B5C0000 - 0x1B655000 C:\WINNT\System32\mswstr10.dll
      0x779B0000 - 0x77A4B000 C:\WINNT\system32\OLEAUT32.dll
      0x1F8E0000 - 0x1F8EE000 C:\WINNT\System32\odbcji32.dll
      0x1B2C0000 - 0x1B2CD000 C:\WINNT\System32\msjter40.dll
      0x1B2D0000 - 0x1B2F6000 C:\WINNT\System32\MSJINT40.DLL
      0x51000000 - 0x51044000 C:\WINNT\System32\ddraw.dll
      0x728A0000 - 0x728A6000 C:\WINNT\System32\DCIMAN32.dll
      0x775A0000 - 0x77625000 C:\WINNT\System32\CLBCATQ.DLL
      0x1B7F0000 - 0x1B82A000 C:\WINNT\System32\msjtes40.dll
      0x11310000 - 0x1131B000 C:\WINNT\System32\VBAJET32.DLL
      0x11730000 - 0x11792000 C:\WINNT\System32\expsrv.dll
      0x77920000 - 0x77943000 C:\WINNT\system32\imagehlp.dll
      0x72A00000 - 0x72A2D000 C:\WINNT\system32\DBGHELP.dll
      0x690A0000 - 0x690AB000 C:\WINNT\System32\PSAPI.DLL

      Local Time = Tue Jun 18 14:06:14 2002
      Elapsed Time = 3
      #
      # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
      # Error ID : 4F530E43505002D5
      # Please report this error at
      # http://java.sun.com/cgi-bin/bugreport.cgi
      #
      # Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)
      #


      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.lang.*;
      import java.net.*;
      import java.sql.*;
      import java.util.*;
      import java.awt.*;
      import java.awt.event.*;
      import java.awt.color.*;
      import javax.swing.border.*;
      import javax.swing.*;

      /**
       * Database is create table dictionary(word char(50), definition char(1000));
       * Using MS Access databse with dsn of Vocab
       * @author Nasir Billoo
       * @version 1.0
       */

      public class Vocab extends JFrame implements ActionListener
      {
        String m_dbDataSource = "", m_dbUser = "", m_dbPass = "";
        Connection m_dbConn;
        Statement m_dbStmt;
        String m_strSQL = "";
        ResultSet m_dbRecSet;
        String m_strWord = "", m_strDefinition = "";
        JTextField m_txtWord;
        JTextArea m_txtDefinition;

        JButton m_btnFirst, m_btnNext, m_btnPrevious, m_btnLast;
        boolean m_bExecuted = false;

        public Vocab()
        {
          try
          {
            initConn();
            setGUI();
          }
          catch(Exception e)
          {
            System.out.println("Error: " + e.getMessage());
          }
        }

       /**
        * sets the GUI for the display of word, definitions
        * the first text field contains the word
        * the second is text area that contains the definitions
        * the bottom of the form is four navigation buttons for
        * first, previous, next and last that allow the user
        * to navigate through the database
        */
        private void setGUI()
        {
            JPanel pane = new JPanel();
            JPanel pane1 = new JPanel();
            JPanel pane2 = new JPanel();
            JPanel pane3 = new JPanel();
            pane3.setLayout(new GridLayout(1, 4));

            pane.setLayout(new BorderLayout());

            m_txtWord = new JTextField("");
            m_txtWord.setHorizontalAlignment(JTextField.LEFT);
            m_txtWord.setPreferredSize(new Dimension(200, 30));
            m_txtDefinition = new JTextArea();
            m_txtDefinition.setPreferredSize(new Dimension(250, 150));
            m_txtDefinition.setBorder(new LineBorder(Color.black, 2));
            m_txtDefinition.setLineWrap(true);
            m_txtDefinition.setWrapStyleWord(true);

            m_btnFirst = new JButton("|<");
            m_btnFirst.addActionListener(this);
            pane3.add(m_btnFirst);

            m_btnPrevious = new JButton("<<");
            m_btnPrevious.addActionListener(this);
            pane3.add(m_btnPrevious);

            m_btnNext = new JButton(">>");
            m_btnNext.addActionListener(this);
            pane3.add(m_btnNext);

            m_btnLast = new JButton(">|");
            m_btnLast.addActionListener(this);
            pane3.add(m_btnLast);

            pane1.add(m_txtWord);

            pane2.add(m_txtDefinition);

            pane.add(pane1, BorderLayout.NORTH);
            pane.add(pane2, BorderLayout.CENTER);
            pane.add(pane3, BorderLayout.SOUTH);

            setContentPane(pane);
        }
        /**
         * This function is the kick start for this application
         * when this is called the Record Set is Executed and
         * the first word, definition is displayed
         */
        public void getDefinitions()
        {
          try
          {
            executeRecSet();
            getFirst();
            setGUIFields();
          }
          catch(Exception e)
          {
            System.out.println("Error: " + e.getMessage());
          }
        }

        /**
         * Initializes the databse connection parameters
         * basically uses the JDBC-ODBC bridge to initiate
         * a connection to the Vocab database which is an
         * ms access database with an ODBC DSN of Vocab
         * @throws ClassNotFoundException
         * @throws SQLException
         */
        private void initConn() throws ClassNotFoundException, SQLException
        {
          //JDBC ODBC bridge
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

          //get Conn Params
          m_dbDataSource = "jdbc:odbc:Vocab";
          m_dbUser = "";
          m_dbPass = "";

          //get Conn
          m_dbConn = DriverManager.getConnection(m_dbDataSource, m_dbUser, m_dbPass);
          //get Stmt
          m_dbStmt = m_dbConn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
      ResultSet.CONCUR_READ_ONLY);
          //get Query
          m_strSQL = getSQL();
        }

        /**
         * Execute Record Set
         * @throws SQLException
         */
        private void executeRecSet() throws SQLException
        {
          m_dbRecSet = m_dbStmt.executeQuery(m_strSQL);
          m_bExecuted = true;
        }

        /**
         * Returns the Only SQL String that is in this application
         * SELECT word, definition FROM dictionary
         * @return String containg sql statment
         */
        private String getSQL()
        {
          return " SELECT word, definition FROM dictionary ";
        }

        /**
         * Takes actions from the four buttons and
         * acts on them, used for navigation between
         * words in the database
         * @param evt
         */
        public void actionPerformed(ActionEvent evt)
        {
          try
          {
              Object source = evt.getSource();
              String strTemp = evt.getActionCommand();
              if (strTemp == "|<") //First
              {
                if (getFirst())
                  setGUIFields();
              }
              if (strTemp == "<<") //Previous
              {
                if (getPrevious())
                  setGUIFields();
              }
              if (strTemp == ">>") //Next
              {
                if (getNext())
                  setGUIFields();
              }
              if (strTemp == ">|") //Last
              {
                if (getLast())
                  setGUIFields();
              }
          }
          catch(Exception e)
          {
            System.out.println("Error: " + e.getMessage());
          }
        }
        private void setGUIFields()
        {
          m_txtWord.setText(m_strWord);
          m_txtDefinition.setText(m_strDefinition);
        }

        /**
         * Gets the Fields from RecordSet and populates local variables
         * @return true
         * @throws SQLException
         */
        private boolean getFieldsFromRecSet() throws SQLException
        {
            m_strWord = m_dbRecSet.getString( "word" );
            m_strDefinition = m_dbRecSet.getString( "definition" );
            return true;
        }

       /**
         * Gets the first word, definition from
         * the result set and sets the two vars
         * @throws SQLException
         * @return true if previous succeeds else false
         */
        private boolean getLast() throws SQLException
        {
          if ( m_bExecuted && m_dbRecSet.last() )
            return getFieldsFromRecSet();
          return false;
        }

        /**
         * Gets the first word, definition from
         * the result set and sets the two vars
         * @throws SQLException
         * @return true if previous succeeds else false
         */
        private boolean getFirst() throws SQLException
        {
          if ( m_bExecuted && m_dbRecSet.first() )
            return getFieldsFromRecSet();
          return false;
        }

        /**
         * Gets the previous word, definition from
         * the result set and sets the two vars
         * @throws SQLException
         * @return true if previous succeeds else false
         */
        private boolean getPrevious() throws SQLException
        {
          if ( m_bExecuted && m_dbRecSet.previous() )
            return getFieldsFromRecSet();
          return false;
        }

        /**
         * Gets the next word, definition from
         * the result set and sets the two vars
         * @throws SQLException
         * @return true if previous succeeds else false
         */
        private boolean getNext() throws SQLException
        {
          if ( m_bExecuted && m_dbRecSet.next() )
            return getFieldsFromRecSet();
          return false;
        }

        /**
         * Gets the Screens coordinates and then
         * changes the location of the window
         * to the center of the screen
         */
        public void setPositionCenter()
        {
          Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
          Dimension frameSize = getSize();

          if (frameSize.height > screenSize.height)
             frameSize.height = screenSize.height;

          if (frameSize.width > screenSize.width)
             frameSize.width = screenSize.width;

          setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height -
      frameSize.height) / 2);
        }
        /**
         *
         * @param args
         * Create a new Vocab frame,
         * set Close Operation
         * set Size
         * set Position
         * get Definitions
         */
        public static void main(String args[])
        {
          Vocab v = new Vocab();
          v.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          v.setSize(300, 300);
          v.setPositionCenter();
          v.setVisible(true);
          v.getDefinitions();
        }
      }

      ---------- END SOURCE ----------

      CUSTOMER WORKAROUND :
      dont use scrollable cursor
      (Review ID: 153792)
      ======================================================================


      Name: rmT116609 Date: 06/18/2002


      FULL PRODUCT VERSION :
      java version "1.4.0_01"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03)
      Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)

      FULL OPERATING SYSTEM VERSION :

      Microsoft Windows 2000 [Version 5.00.2195]

      DESCRIPTION OF THE PROBLEM :
      An EXCEPTION_ACCESS_VIOLATION is thrown when attempting to execute a query on a Microsoft Access database. This problem did not exist in the initial j2sdk_1_4_0 release. It appears that a lock file is created on connection with the database which then prevents the program from accessing the database to execute queries. A new lock file is generated each time the program is started, but it exits with debug information indicating a locked database upon the first query.

      REGRESSION. Last worked in version 1.4.0-b92

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1.Create a Microsoft Access database with a simple table.
      2.Write a class which gets a connection to the database, create a statement, execute a simple query.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      Query should succeed upon access to the database, but instead the query fails and the program exits with the above debug information.

      ERROR MESSAGES/STACK TRACES THAT OCCUR :
      Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D366658
      Function=[Unknown.]
      Library=C:\j2sdk1.4.0_01\jre\bin\client\jvm.dll

      NOTE: We are unable to locate the function name symbol for the error
            just occurred. Please refer to release documentation for possible
            reason and solutions.


      Current Java thread:
      at sun.jdbc.odbc.JdbcOdbc.setStmtAttrPtr(Native Method)
      at sun.jdbc.odbc.JdbcOdbc.SQLSetStmtAttrPtr(JdbcOdbc.java:4676)
      at sun.jdbc.odbc.JdbcOdbcResultSet.setRowStatusPtr
      (JdbcOdbcResultSet.java:4473)
      at sun.jdbc.odbc.JdbcOdbcResultSet.initialize
      (JdbcOdbcResultSet.java:171)
      at sun.jdbc.odbc.JdbcOdbcStatement.getResultSet
      (JdbcOdbcStatement.java:423)
      - locked <02A097D0> (a sun.jdbc.odbc.JdbcOdbcStatement)
      at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery
      (JdbcOdbcStatement.java:253)
      at com.altaircybernetics.fsma.db.DatabaseBugTest.getProjects
      (DatabaseBugTest.java:62)
      at com.altaircybernetics.fsma.db.DatabaseBugTest.main
      (DatabaseBugTest.java:82)

      Dynamic libraries:
      0x00400000 - 0x00406000 C:\j2sdk1.4.0_01\bin\java.exe
      0x77F80000 - 0x77FFB000 C:\winnt\System32\ntdll.dll
      0x77DB0000 - 0x77E0C000 C:\winnt\system32\ADVAPI32.dll
      0x77E80000 - 0x77F35000 C:\winnt\system32\KERNEL32.DLL
      0x77D40000 - 0x77DB0000 C:\winnt\system32\RPCRT4.DLL
      0x78000000 - 0x78046000 C:\winnt\system32\MSVCRT.dll
      0x6D330000 - 0x6D445000 C:\j2sdk1.4.0_01\jre\bin\client\jvm.dll
      0x77E10000 - 0x77E74000 C:\winnt\system32\USER32.dll
      0x77F40000 - 0x77F7C000 C:\winnt\system32\GDI32.DLL
      0x77570000 - 0x775A0000 C:\winnt\System32\WINMM.dll
      0x6D1D0000 - 0x6D1D7000 C:\j2sdk1.4.0_01\jre\bin\hpi.dll
      0x6D300000 - 0x6D30D000 C:\j2sdk1.4.0_01\jre\bin\verify.dll
      0x6D210000 - 0x6D228000 C:\j2sdk1.4.0_01\jre\bin\java.dll
      0x6D320000 - 0x6D32D000 C:\j2sdk1.4.0_01\jre\bin\zip.dll
      0x6D250000 - 0x6D25A000 C:\j2sdk1.4.0_01\jre\bin\JdbcOdbc.dll
      0x1F7D0000 - 0x1F804000 C:\winnt\System32\ODBC32.dll
      0x76B30000 - 0x76B6E000 C:\winnt\system32\comdlg32.dll
      0x70BD0000 - 0x70C1C000 C:\winnt\system32\SHLWAPI.DLL
      0x716F0000 - 0x7177A000 C:\winnt\system32\COMCTL32.DLL
      0x782F0000 - 0x7852F000 C:\winnt\system32\SHELL32.DLL
      0x1F8C0000 - 0x1F8D6000 C:\winnt\System32\odbcint.dll
      0x1F8F0000 - 0x1F932000 C:\WINNT\System32\odbcjt32.dll
      0x1B000000 - 0x1B16F000 C:\WINNT\System32\msjet40.dll
      0x1B5C0000 - 0x1B655000 C:\WINNT\System32\mswstr10.dll
      0x77A50000 - 0x77B46000 C:\winnt\system32\ole32.dll
      0x779B0000 - 0x77A4B000 C:\winnt\system32\OLEAUT32.dll
      0x1F8E0000 - 0x1F8EE000 C:\WINNT\System32\odbcji32.dll
      0x1B2C0000 - 0x1B2CD000 C:\WINNT\System32\msjter40.dll
      0x1B2D0000 - 0x1B2F6000 C:\WINNT\System32\MSJINT40.DLL
      0x775A0000 - 0x77625000 C:\winnt\System32\CLBCATQ.DLL
      0x1B7F0000 - 0x1B82A000 C:\WINNT\System32\msjtes40.dll
      0x105F0000 - 0x105FB000 C:\winnt\System32\VBAJET32.DLL
      0x10A10000 - 0x10A72000 C:\winnt\System32\expsrv.dll
      0x77920000 - 0x77943000 C:\winnt\system32\imagehlp.dll
      0x72A00000 - 0x72A2D000 C:\winnt\system32\DBGHELP.dll
      0x690A0000 - 0x690AB000 C:\winnt\System32\PSAPI.DLL

      Local Time = Mon Jun 17 10:50:32 2002
      Elapsed Time = 2
      #
      # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
      # Error ID : 4F530E43505002D5
      # Please report this error at
      # http://java.sun.com/cgi-bin/bugreport.cgi
      #
      # Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)
      #

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      /** Change package name to your location */
      package com.altaircybernetics.fsma.db;

      import java.awt.*;
      import java.util.*;
      import java.awt.event.*;
      import java.applet.*;
      import java.io.*;
      import java.sql.*; //import all the JDBC classes


      public class DatabaseBugTest implements Serializable {

      static String[] ConnectOptionNames = { "Connect" };
      static String ConnectTitle = "Connection Information";

      String m_strUrl = "jdbc:odbc:";
      String m_strDriver = "sun.jdbc.odbc.JdbcOdbcDriver";

      /* Statement */
      Statement m_Statement = null;

      /* The database connection */
      Connection m_conConnection= null;

      /* The model datasource name */
      String m_strDSName = null;

      /**
      * Constructor
          */
      public DatabaseBugTest(String dsname) {
      m_strDSName = dsname;
      m_strUrl = m_strUrl + m_strDSName;
      connectModelDataBase(m_strUrl, m_strDriver, "", "");
      }


      public void connectModelDataBase(String url, String driverName,
                             String user, String passwd) {
      try {
      Class.forName(driverName);

      m_conConnection = DriverManager.getConnection(url,
      user, passwd);
      m_Statement = m_conConnection.createStatement(
      ResultSet.TYPE_SCROLL_SENSITIVE,
                  
      ResultSet.CONCUR_UPDATABLE);
      }
      catch (ClassNotFoundException ex) {
      System.err.println("Cannot find the database driver
      classes.");
      System.err.println(ex);
      }
      catch (SQLException ex) {
      System.err.println("Cannot connect to this database.");
      System.err.println(ex);
      }
      }


      public void getProjects() {
      try {
      // Execute a query. Substitute query syntax for one
      that works with your table.
      ResultSet rs = m_Statement.executeQuery("SELECT model
      from models ORDER BY model");
      while (rs.next()) {
      System.out.println(rs.getString("model"));
      }

      }
      catch (SQLException ex) {
      System.err.println("SQLException: " + ex.getMessage());
      }
      }



          /**
           * Main method
           *
           */
          public static void main(String[] args) {
      // Connect to database. Substitute database name for fsma.
      DatabaseBugTest db = new DatabaseBugTest( "fsma" );
      db.getProjects();
      }

      }

      ---------- END SOURCE ----------


      Another test case:
      -------------------

      import java.sql.*;

      public class test140_01
      {
      public static void main(String args[])
      {
      try
      {
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
      for(int j=0; j<1; j++)
      {
      Connection con = DriverManager.getConnection("jdbc:odbc:msaccess", "", "");
      Statement stmt1 = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);

      try
      {
      stmt1.executeUpdate("drop table updrsstr_test");
      }
      catch(Exception e1)
      {
      }

      stmt1.executeUpdate("create table updrsstr_test(col1 number, col2 varchar(32))");

      for(int i=0; i<10; i++)
      {
      stmt1.executeUpdate("insert into updrsstr_test values(1, 'string to be updated')");
      }

      stmt1.close();


      Statement stmt2 = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
      ResultSet rs2 = stmt2.executeQuery("select * from updrsstr_test");
      while(rs2.next())
      {
      //System.out.println("updated double value: " + rs2.getDouble(1));
      //System.out.println("updated string value: " + rs2.getString(2));
      }
      rs2.close();
      stmt2.close();

      System.out.println("inserted and retrieved successfully");

      con.close();
      }
      }
      catch(Exception e)
      {
      e.printStackTrace();
      }
      }
      }


      With JDK1.4.0:
      --------------
      "inserted and retrieved successfully"

      With JDK1.4.0_01:
      -----------------
      Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D366658
      Function=[Unknown.]
      Library=f:\j2sdk1.4.0_01\jre\bin\client\jvm.dll

      NOTE: We are unable to locate the function name symbol for the error
            just occurred. Please refer to release documentation for possible
            reason and solutions.


      Current Java thread:
      at sun.jdbc.odbc.JdbcOdbc.setStmtAttrPtr(Native Method)
      at sun.jdbc.odbc.JdbcOdbc.SQLSetStmtAttrPtr(JdbcOdbc.java:4676)
      at sun.jdbc.odbc.JdbcOdbcResultSet.setRowStatusPtr(JdbcOdbcResultSet.java:4473)
      at sun.jdbc.odbc.JdbcOdbcResultSet.initialize(JdbcOdbcResultSet.java:171)
      at sun.jdbc.odbc.JdbcOdbcStatement.getResultSet(JdbcOdbcStatement.java:423)
      - locked <02DB0A78> (a sun.jdbc.odbc.JdbcOdbcStatement)
      at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:253)
      at test140_01.main(test140_01.java:34)

      Dynamic libraries:
      0x00400000 - 0x00406000 f:\j2sdk1.4.0_01\bin\java.exe
      0x77F60000 - 0x77FBE000 C:\WINNT\System32\ntdll.dll
      0x77DC0000 - 0x77DFF000 C:\WINNT\system32\ADVAPI32.dll
      0x77F00000 - 0x77F5E000 C:\WINNT\system32\KERNEL32.dll
      0x77E70000 - 0x77EC5000 C:\WINNT\system32\USER32.dll
      0x77ED0000 - 0x77EFC000 C:\WINNT\system32\GDI32.dll
      0x77E10000 - 0x77E67000 C:\WINNT\system32\RPCRT4.dll
      0x78000000 - 0x78040000 C:\WINNT\system32\MSVCRT.dll
      0x6D330000 - 0x6D445000 f:\j2sdk1.4.0_01\jre\bin\client\jvm.dll
      0x77FD0000 - 0x77FFA000 C:\WINNT\System32\WINMM.dll
      0x6BC00000 - 0x6BC10000 C:\WINNT\System32\SMNT40.dll
      0x69F00000 - 0x69F14000 C:\WINNT\System32\sxgb.dll
      0x71DC0000 - 0x71DCA000 C:\WINNT\System32\PSAPI.DLL
      0x76AC0000 - 0x76ADD000 C:\WINNT\System32\IMAGEHLP.dll
      0x10000000 - 0x10009000 C:\WINNT\System32\SXGBSYS.DLL
      0x6D1D0000 - 0x6D1D7000 f:\j2sdk1.4.0_01\jre\bin\hpi.dll
      0x6D300000 - 0x6D30D000 f:\j2sdk1.4.0_01\jre\bin\verify.dll
      0x6D210000 - 0x6D228000 f:\j2sdk1.4.0_01\jre\bin\java.dll
      0x6D320000 - 0x6D32D000 f:\j2sdk1.4.0_01\jre\bin\zip.dll
      0x6D250000 - 0x6D25A000 F:\j2sdk1.4.0_01\jre\bin\JdbcOdbc.dll
      0x1F7B0000 - 0x1F7E1000 C:\WINNT\System32\ODBC32.dll
      0x71590000 - 0x71617000 C:\WINNT\system32\COMCTL32.dll
      0x77D80000 - 0x77DB2000 C:\WINNT\system32\comdlg32.dll
      0x70980000 - 0x70B28000 C:\WINNT\system32\SHELL32.dll
      0x70BD0000 - 0x70C14000 C:\WINNT\system32\SHLWAPI.dll
      0x1F850000 - 0x1F866000 C:\WINNT\System32\odbcint.dll
      0x1F870000 - 0x1F896000 C:\WINNT\System32\odbctrac.dll
      0x77B20000 - 0x77BD7000 C:\WINNT\system32\ole32.dll
      0x1F8F0000 - 0x1F932000 C:\WINNT\System32\ODBCJT32.DLL
      0x1B000000 - 0x1B16C000 C:\WINNT\System32\msjet40.dll
      0x1B5C0000 - 0x1B655000 C:\WINNT\System32\mswstr10.dll
      0x65340000 - 0x653D5000 C:\WINNT\system32\OLEAUT32.dll
      0x1F8E0000 - 0x1F8EE000 C:\WINNT\System32\odbcji32.dll
      0x1B2C0000 - 0x1B2CD000 C:\WINNT\System32\msjter40.dll
      0x1B2D0000 - 0x1B2F6000 C:\WINNT\System32\MSJINT40.DLL
      0x77BF0000 - 0x77BF7000 C:\WINNT\System32\rpcltc1.dll
      0x1B7C0000 - 0x1B7F9000 C:\WINNT\System32\msjtes40.dll
      0x0F9A0000 - 0x0F9AB000 C:\WINNT\System32\VBAJET32.DLL
      0x0FDC0000 - 0x0FE22000 C:\WINNT\System32\expsrv.dll

      Local Time = Wed Jun 05 17:59:00 2002
      Elapsed Time = 1
      #
      # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
      # Error ID : 4F530E43505002D5
      # Please report this error at
      # http://java.sun.com/cgi-bin/bugreport.cgi
      #
      # Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)
      #

      Release Regression From : 1.4
      The above release value was the last known release where this
      bug was known to work. Since then there has been a regression.

      (Review ID: 153717)
      ======================================================================

      Name: rmT116609 Date: 06/18/2002


      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1.compiling the .java file
      2.run the program
      3.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      package SSDB;

      import java.awt.*;
      import java.awt.event.*;
      import javax.swing.*;
      import java.sql.*;




      public class ViewAll
      {
      JFrame jf;
      JPanel jp;
      JTable jt;
      Connection con;
      Statement state;
      ResultSet rs;
      ResultSetMetaData rsmd;
      Object [][] rowdata;
      Object [] columnNames;

      ViewAll()
      {
      jf = new JFrame("&#1602;&#1575;&#1593;&#1583;&#1577; &#1575;&#1604;&#1576;&#1610;&#1575;&#1606;&#1575;&#1578;");
      jp = new JPanel();


      }

      public void gui()
      {
      jp.setLayout(new GridLayout(1,1));

      try{
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
      con = DriverManager.getConnection
      ("jdbc:odbc:ssdb","","");
      state = con.createStatement
      (ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
      rs = state.executeQuery("Select * from SSDB");
      rsmd = rs.getMetaData();
      int col = rsmd.getColumnCount();
      int rows = 0;
      //
      // for (int c = 0;c<col;c++)
      // {
      // columnNames = new Object[col];
      // columnNames [c] = rsmd.getColumnName(c);
      // }
      //
      // while (rs.next())
      // {
      // rows++;
      // }
      //
      // rowdata = new Object[rows][col];
      System.out.println(""+col);


      }catch (ClassNotFoundException cnfe){System.out.println
      ("ClassNotFoundException: "+cnfe.getMessage());}
      catch (SQLException sqle){System.out.println
      ("SQLException: "+sqle.getMessage());}
      catch (Exception ge){System.out.println("Exception: "+ge.getMessage
      ());}

      }


      public static void main (String[] args)
      {

      ViewAll va = new ViewAll();
      va.gui();

      }




      }

      ---------- END SOURCE ----------
      (Review ID: 153738)
      ======================================================================

      Name: rmT116609 Date: 06/18/2002


      DESCRIPTION OF THE PROBLEM :
      If you look at the source if I don't have any parameters in the
      createStatment then no error but I get a forward only cursor
      when I add the parameters I get the exception.

          m_dbStmt =
      m_dbConn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
      ResultSet.CONCUR_READ_ONLY);

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. Compile code, run Code

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      I should get a scrollable cursor

      ERROR MESSAGES/STACK TRACES THAT OCCUR :

      Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D366658
      Function=[Unknown.]
      Library=C:\j2sdk1.4.0_01\jre\bin\client\jvm.dll

      NOTE: We are unable to locate the function name symbol for the error
            just occurred. Please refer to release documentation for possible
            reason and solutions.


      Current Java thread:
      at sun.jdbc.odbc.JdbcOdbc.setStmtAttrPtr(Native Method)
      at sun.jdbc.odbc.JdbcOdbc.SQLSetStmtAttrPtr(JdbcOdbc.java:4676)
      at sun.jdbc.odbc.JdbcOdbcResultSet.setRowStatusPtr(JdbcOdbcResultSet.java:4473)
      at sun.jdbc.odbc.JdbcOdbcResultSet.initialize(JdbcOdbcResultSet.java:171)
      at sun.jdbc.odbc.JdbcOdbcStatement.getResultSet(JdbcOdbcStatement.java:423)
      - locked <02A27AE0> (a sun.jdbc.odbc.JdbcOdbcStatement)
      at sun.jdbc.odbc.JdbcOdbcStatement.execu

            duke J. Duke
            rmandalasunw Ranjith Mandala (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: