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

  • Home
  • SEARCH
  • 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 7967929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:59:49+00:00 2026-06-04T06:59:49+00:00

I have a method that is supposed to populate a JComboBox with data gathered

  • 0

I have a method that is supposed to populate a JComboBox with data gathered from my database, but the only way I’ve seen to be able to grab the info from the database, is in an Array. And I need to convert the array to object[] before I can completely compile my program. Is there any way to actually do this? Or is this going to be a long process? My code is as below.

public Object[] getId() {
  Connection con;
  Statement stmt;
  ResultSet rs;

  //Object[] returnId;
  Array returnId;
  try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:collegesys","root","0blivi0n");

    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
    rs = stmt.executeQuery("SELECT `id` FROM main");

    while(rs.next()) {
      returnId = rs.getArray("id");
    }

    con.close();
  } catch(Exception e) {
    e.printStackTrace();
  }
  return returnId.toObject();
}
  • 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-06-04T06:59:50+00:00Added an answer on June 4, 2026 at 6:59 am

    Try this:

    return (Object[]) returnId.getArray();
    

    I gather that you want to collect the value of the "id" column from all rows of table main. Your code will not do that as it’s organized. Try this instead:

    public Object[] getId() {
      Connection con;
      Statement stmt;
      ResultSet rs;
    
      //Object[] returnId;
      ArrayList<Object> returnId = new ArrayList<Object>();
      try {
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        con = DriverManager.getConnection("jdbc:odbc:collegesys","root","0blivi0n");
    
        stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
        rs = stmt.executeQuery("SELECT `id` FROM main");
    
        while(rs.next()) {
          returnId.add(rs.getObject("id"));
        }
    
        con.close();
      } catch(Exception e) {
        e.printStackTrace();
      }
      return returnId.toArray(new Object[returnId.size()]);
    }
    

    Of course, if you have a better idea of the data type in column id, you can be more specific about the return type and how you get the value (e.g., String[] and rs.getString("id") or Integer[] and rs.getInt("id")).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a method that must return an object (say from a database
In Rails 3.0.9 (Ruby 1.9.2, MySQL) I have a method that is supposed to
I have the following method that is supposed to be a generic Save to
I have a listview that's populated by rows that get their data from a
I have a method that is supposed to check whether there is exactly one
I have a method that is being executed on a background thread. From that
I am using java language,I have a method that is supposed to return an
Suppose I have a Java method that returns a HashMap object. Because a LinkedHashMap
Suppose that we have a class called class1. The class1 has a method called
I have a method that accepts an IEnumerable-decimals and performance various math functions. I

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.