Giter Site home page Giter Site logo

Comments (5)

sqlalchemy-bot avatar sqlalchemy-bot commented on May 21, 2024

Michael Bayer (@zzzeek) wrote:

we are going to use UNIQUE to put a clustered unique constraint on all the "primary keys" specified in a Table when its created. only the first primary_key in the column list will actually be called 'primary key'.

as far as when we reflect such a table back from the DB, im not sure yet. how do we differentiate an ordinary unique index from one that is a clustered primary key ? might want to skip this step.

multiple primary keys are already supported by the Mapper if you explicitly send the "primary_keys" argument, which will name any arbitrary cols as primary keys to be used for an object's ID. I might just leave it this way, so that a multi-primary-key ORM is possible, just needs a little more explicitness in some cases.

from sqlalchemy.

sqlalchemy-bot avatar sqlalchemy-bot commented on May 21, 2024

Michael Bayer (@zzzeek) wrote:

ok, that went differently than I thought. both postgres and sqlite support a separate PRIMARY KEYS (col1, col2) clause. however, when you use it with sqlite, sqlite suddenly will not autoincrement anymore.

so, the default behavior when a table has multiple primary keys is to use PRIMARY KEYS (col1, col2). with SQLIte, it creates the first column as a PRIMARY KEY, then creates a UNIQUE index encompassing all the primary keys. it also will reflect a table with a UNIQUE index containing a primary key as a multiple primary key table.

when using tables with multi-primary keys, its safe to assume the first primary key column is autoincrementing. successive keys, its not. it works with postgres, not with sqlite. so in that case, an application has to populate all but the first primary key on a table or object instance before INSERT or objectstore.commit().

changeset 651. primary key unit tests added previously to test/objectstore.py and test/engines.py.

from sqlalchemy.

sqlalchemy-bot avatar sqlalchemy-bot commented on May 21, 2024

Changes by Michael Bayer (@zzzeek):

  • added labels: high priority
  • changed title from "write unit tests for ORM with a basic multiple pri" to "tables with multiple primary keys cant be created"
  • set milestone to "first release"

from sqlalchemy.

sqlalchemy-bot avatar sqlalchemy-bot commented on May 21, 2024

Changes by Michael Bayer (@zzzeek):

  • removed labels: orm
  • added labels: schema

from sqlalchemy.

sqlalchemy-bot avatar sqlalchemy-bot commented on May 21, 2024

Changes by Michael Bayer (@zzzeek):

  • changed status to closed

from sqlalchemy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.