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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:12:15+00:00 2026-06-10T15:12:15+00:00

I would like to create a structure to store the data from the database.

  • 0

I would like to create a structure to store the data from the database.

I created a function

function result = LoadDataFromDB(query, columnNames)

where column names represents the list of column names, for example {‘id’, ‘year’, ‘name’…}

After executing the following query

ps=conn.prepareStatement(sql);
rs=ps.executeQuery();

I would like to fill the structure, but haven’t figured out how to dynamically access the fields in the structure.

Here is the code piece that should create and fill the structure:

varnamelist = genvarname(columnNames);

result = cell2struct(cell(size(varnamelist(:))), varnamelist(:));
while rs.next()
    count=count+1;
    for i = 1 : length(columnNames)
        fieldname = columnNames(i);
        value = char(rs.getString(i));
          %result(count).columnNames(i)=char(rs.getString(i));
          result(count).(fieldname) = value;
    end
end

The main problem is the line

result(count).(fieldname) = value;

To describe a problem below is the copy from the console output:

K>> result(1)

ans = 

    a: []
    b: []
    c: []

K>> result(1).('a')

ans =

     []

K>> fieldname

fieldname = 

    'a'

Concluding from the above output, the command result(1).(fieldname) should access the field ‘a’ but trying it out, it returns the following error:

K>> result(1).(fieldname)
??? Argument to dynamic structure reference must evaluate to a valid field name.

Does anyone know how to fill the structure dinamically?

  • 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-10T15:12:16+00:00Added an answer on June 10, 2026 at 3:12 pm

    Yes, there’s dynamic field reference. You can find more on it here for example.

    Dynamic reference can be used to assign or reference fields in structures like so:

    fieldName = 'some_field';
    your_struct.(fieldName) = fieldValue
    

    So, in your case, that would mean modifying the inner loop body to

    fieldname = columnNames{i};
    value = rs.getString{i};
    result(count).(fieldname) = value;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a structure with rails g scaffold Article , but
i would like create a array of structure which have a dynamic array :
I would like to create some kind of structure to reduce the number of
I have folder structure and I would like to create JSON objects based on
I would like to create this shape using just css. I am pretty sure
I would like to create a c++ type that mimic the build-in type exactly.
I would like to create a json object to send as a post array,
I would like to create set of strings and below is the only limitation.
I would like to create a class that runs something (a runnable) at regular
I would like to create a virtual host in apache2, but I want it

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.