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 6016883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:02:50+00:00 2026-05-23T03:02:50+00:00

How can i initialize a 2-dimensional matrix from records coming from a database. I

  • 0

How can i initialize a 2-dimensional matrix from records coming from a database. I know how to do it in a for loop, but how should id o in such a situation:

Statement s = con.createStatement();
ResultSet res = s.executeQuery("my query");

while(res.next()){

   //Here i want to put records from  
   //2 colums say t1 and t2 in a 2D marix say result[][]            

}

While this is how i would fill the matrix:

for(int i=0; i<result.length; i++){
   for(int j=0; j<result[i].length; j++){
          result[i][j] = value;
   }
}

I have no clue how to do this. Please suggest someting?

  • 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-23T03:02:51+00:00Added an answer on May 23, 2026 at 3:02 am

    if you know the number of columns, then the solution would be

    for(int i=0; i<result.length; i++){
       res.next();
       result[i][0] = res.getInt("field1");
       result[i][0] = res.getInt("field2");
       ...
    }
    

    if your columns are numbered, you can then use a second loop as per your code and do

    for(int i=0; i<result.length; i++){
       res.next();
       for(int j=0; j<numfields; j++) {
          result[i][j] = res.getInt("field"+j);
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In C++ you can initialize a variable in an if statement, like so: if
You can initialize an array like this: int [ ] arr = { 1,
In spring you can initialize a bean by having the applicationContext.xml invoke a constructor,
How can I initialize a const / static array of structs as clearly as
How can I initialize a list containing generic objects whose types can be different?
Can I really and truly trust .NET to initialize fields (like ints, structs and
When {0} is used to initialize an object, what does it mean? I can't
I've got MATLAB code inserting n-dimensional points (n >1) into a matrix ( myPointMatrix
I like to initialize 2-dimensional arrays as vector<vector<int> >(x,y) . x is passed to
How do I initialize a multi-dimensional array of a primitive type as fast as

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.