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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:12:52+00:00 2026-06-13T03:12:52+00:00

When dealing with a denormalised (legacy) database table, whereby you have columns such as:

  • 0

When dealing with a denormalised (legacy) database table, whereby you have columns such as:

price_1, price_2, price_3, …, price_10

What is the most efficient and cleanest way of mapping such columns into a java collection (a List for example), instead of mapping them to corresponding price1, price2, … properties.

Is there a simple way of doing it that does not involve UserTypes.

I am talking about columns residing on the same table, not the usual one-to-many relationship between multiple entities.

  • 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-13T03:12:54+00:00Added an answer on June 13, 2026 at 3:12 am

    What I’ve done once before in this situation is create a class to encapsulate the prices, like

    public class Prices {
        Integer price_1;
        Integer price_2;
    
        public List<Integer> getAllPrices() {
            List<Integer> allPrices = new ArrayList<Integer>();
            allPricess.add(price_1);
            allPrices.add(price_2);
            return allPrices;
        }
        public Integer getPrice(int priceNumber) {
            if (priceNumber == 1) {
                return price_1;
            }
            // etc...
        }
    }
    

    Then just map the columns in the table to the individual fields and use the Java class to hide the actual structure from the rest of the code. You can access all the prices as a collection or individually or whatever is suitable.

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

Sidebar

Related Questions

Dealing with some legacy code and in trying to get a poorly designed database
I'm dealing with a legacy database and I'd like to create a test version
Dealing with Java - which the option you prefer in the most cases -
Other questions dealing with use of match_parent pre 2.2 have answers stating one should
Im dealing with a bit of a problem. I have a WYSIWYG editor saving
when dealing with wildcards such as setting/adding a generic item to a certain container
While dealing with heterogeneous containers (i.e. database cursor with strings, ints etc.), what (and
I'm dealing with a midlet in j2me, and I have this thread class (say
Recently I have been dealing with windows LogonUser API. The LogonUser api returns different
I am dealing with Cell and I have a problem because they are not

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.