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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:15:10+00:00 2026-05-23T11:15:10+00:00

I’m trying to design some database tables to store configuration settings about certain entities

  • 0

I’m trying to design some database tables to store configuration settings about certain entities and the applications they are associated with. I can get so far but have hit a “brick wall”. I’ll show you what I mean… (do not take the following: pictures, as a literal business problem, pictures are just an easy way of explaining my problem to you).

Criteria

  1. We have a catlog of pictures.
  2. We have several applications that can
    consume any number of these
    pictures.
  3. We want to configure how to display these pictures
    depending on the application.

Bear in mind that each application has a specific and unique way it can be configured to show pictures.

So it’s clear we need 2 tables PICTURE and APPLICATION and a junction table to show the M-M relationship, as many pictures can be in many applications – see below:

enter image description here

I have highlighted in red the column “CONFIG_TABLE” – I have a very strong suspicion this is bad, very, very bad. It is showing that for a paricular app this is the config table to store the settings in. See below:

enter image description here

So – there are very speicific app configurations to apply to pictures, depending on what app you are talking about. Now assuming the design is broken, as I believe it it is – how do I actually design the database to model this correctly? (Hope this makes sense)

  • 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-23T11:15:11+00:00Added an answer on May 23, 2026 at 11:15 am

    The design is not far off from being correct. You simply don’t need the application.config_table column. Instead, each application ought to know which table pertains to its own use of pictures.

    So for example in the PicManager application, you could do this:

    SELECT p.*, c.*
    FROM Picture_Appliation AS pa
    INNER JOIN Picture AS p ON pa.pic_id = p.pic_id
    LEFT OUTER JOIN Picman_Config AS c ON p.pic_id = c.pic_id
    WHERE pa.app_id = 100;
    

    And in each of the other applications, you’d code a different config table in your query.

    Don’t try to make this too “automatic” or “data-driven”. Just write the code that is appropriate in each application. You can use data-driven methods for data values (e.g. app_id=100), but not code. Data is data. Code is code.

    You may want to write just one reusable class that’s employed in all your applications, but that’s what subclasses are for.

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

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
I'm trying to create an if statement in PHP that prevents a single post

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.