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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:21:50+00:00 2026-06-01T13:21:50+00:00

I’m building a database in django but I’ve run into a bit of an

  • 0

I’m building a database in django but I’ve run into a bit of an obstacle,

I’m trying to do something like this: there’s an object, and that object has two indices. each index has two values. This may sound confusing so let me put it this way:

Book has index alpha and index Beta
index alpha is at position (4,3)
index beta is at position (7,4)
Notice that the positions are stored sepparately instead of being in integer form ((4,3) instead of “43”)

In order to implement this on a DB, I’ve build a class for index and for Book, with a foreign key in index. Like so:

class index(models.Model):
    book = models.ForeignKey(Books)
    int1 = models.IntegerField()
    int2 = models.IntegerField()

However, I wanted to simplify this. It’s gonna get messy later when I try to give other uses for the index class. (Not using it specificaly for the book class)

Ideally I’d create a custom multi value field which later I could use freely in my book class, like so:

class Book(models.Model):
      title=...
      publisher= ...
      indexA=customMulti-valueField()

Is this possible? How would I define such a Field?
I’ve had a look at django documentation concerning custom field creation, but I don’t think it answers my problem.

The main concern here is having a mysql datatype that can store something like the python tuple.

Thanks.

  • 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-01T13:21:51+00:00Added an answer on June 1, 2026 at 1:21 pm

    If it only has 2 indices, I would just store them in IntegerFields and create a method that returns them both, like this:

    class Book(models.Model):
        title=...
        publisher= ...
        indexAX=models.IntegerField()
        indexAY=models.IntegerField()
        indexBX=models.IntegerField()
        indexBY=models.IntegerField()
    
        def indexA(self):
            return self.indexAX, self.indexAY
    
        def indexB(self):
            return self.indexBX, self.indexBY
    

    Then you can use it like this:

    b = Book.objects.create('Title', 'Publisher', 1, 2, 3, 4)
    ax, ay = b.indexA()
    bx, by = b.indexB()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have a French site that I want to parse, but am running into
I am trying to render a haml file in a javascript response like so:
I would like to run a str_replace or preg_replace which looks for certain words
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
This could be a duplicate question, but I have no idea what search terms
I know there's a lot of other questions out there that deal with this

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.