Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4098380
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:17:40+00:00 2026-05-20T20:17:40+00:00

i have a problem here of displaying a date type from ms access db

  • 0

i have a problem here of displaying a date type from ms access db to jtable… i can’t seem get it to work, and try to modified my codes but still didn’t lucky, i hope someone here could offer me another idea…

here is my sample code to populate my jtable with data from database:

public void PopulatejTable(){
    DefaultTableModel model =(DefaultTableModel)jTable1.getModel();

    jTable1.getColumnModel().getColumn(0).setPreferredWidth(35);
    jTable1.getColumnModel().getColumn(1).setPreferredWidth(200);
    jTable1.getColumnModel().getColumn(2).setPreferredWidth(100);
    jTable1.getColumnModel().getColumn(3).setPreferredWidth(150);
    jTable1.getColumnModel().getColumn(4).setPreferredWidth(100);

    String dbuser = "";
    String dbpasswd = "";
    String DriverPrefix = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\\myWork2\\PersonalInfo\\db1.mdb";

    String SQLString = ("select ID,Username,Password,Website from Table1 order by ID");

    try{
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    }catch(Exception e){
        JOptionPane.showMessageDialog(null,""+e.getMessage(),"JDBC DRIVER Error",JOptionPane.WARNING_MESSAGE);
        return;
    }
    PreparedStatement stmt = null;
    Connection con = null;
    ResultSet rset = null;

    try{
        con = DriverManager.getConnection(DriverPrefix,dbuser,dbpasswd);
        stmt = con.prepareStatement(SQLString);
    }catch(Exception e){
        JOptionPane.showMessageDialog(null,""+e.getMessage(),"Connection Error",JOptionPane.WARNING_MESSAGE);
    }
    while(model.getRowCount()>0){
        model.removeRow(0);
    }

    try{
        rset = stmt.executeQuery();
        while(rset.next()){
            int ID = rset.getInt(1);
            String Username = rset.getString(2);
            String Password = rset.getString(3);
            String Website = rset.getString(4);
            Date DateEncoded = rset.getDate(5);
            model.addRow(new Object[]{ID,Username,Password,Website,DateEncoded});
        }
        rset.close();
        stmt.close();
        con.close();
    }catch(SQLException e){
           JOptionPane.showMessageDialog(null,e.getMessage(),"Communication Error",JOptionPane.WARNING_MESSAGE);
    }
}

and this is the errors i get:

    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 4 >= 4
    at java.util.Vector.elementAt(Vector.java:427)
    at javax.swing.table.DefaultTableColumnModel.getColumn(DefaultTableColumnModel.java:277)
    at UsernamePasswordPackage.MainForm.PopulatejTable(MainForm.java:1302)
    at UsernamePasswordPackage.MainForm.<init>(MainForm.java:71)
    at UsernamePasswordPackage.MainForm$29.run(MainForm.java:1398)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

thanks to someone who could help me… 🙂 🙂 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T20:17:41+00:00Added an answer on May 20, 2026 at 8:17 pm

    Just by looking at your error codes it looks like you don’t have enough columns.

    jTable1.getColumnModel().getColumn(4).setPreferredWidth(100);
    
    
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 4 >= 4 at java.util.Vector.elementAt(Vector.java:427) at javax.swing.table.DefaultTableColumnModel.getColumn(DefaultTableColumnModel.java:277) 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well here's my problem I have three tables; regions, countries, states. Countries can be
I have a problem with displaying images in WPF. Here's my code: <Button HorizontalAlignment=Left
I'm having a strange problem here... I have an ASP.NET 3.5 application that has
I'm having a bit of a problem here. We have 2 urls let me
Here is the problem I have: I have a lot (tens of thousands) of
Here's my problem - I have some code like this: <mx:Canvas width=300 height=300> <mx:Button
Here's my problem: I have a virtual method defined in a .h file that
Here is the problem: we have lots of Javascripts and lots of CSS files,
Here's my problem: I have to call a web service with a secure header
Here's my problem.I have 2 xmlfiles with identical structure, with the second xml containing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.