Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to define a column (primary key) as uuid in sqlalchemy if using postgresql?

share|improve this question

5 Answers

up vote -3 down vote accepted

You could try writing a custom type, for instance:

import sqlalchemy.types as types

class UUID(types.TypeEngine):
    def get_col_spec(self):
        return "uuid"

    def bind_processor(self, dialect):
        def process(value):
            return value
        return process

    def result_processor(self, dialect):
        def process(value):
            return value
        return process

table = Table('foo', meta,
    Column('id', UUID(), primary_key=True),
)
share|improve this answer
3  
This doesn't even work, it's just a cut-and-paste job from the dummy type example from the docs. Tom Willis' answer below is much better. – Jesse Dhillon Aug 2 '10 at 0:03

I wrote this

Unless I'm missing something the above solution will work if the underlying database has a UUID type. If it doesn't, you would likely get errors when the table is created. The solution I came up with I was targeting MSSqlServer originally and then went MySql in the end, so I think my solution is a little more flexible as it seems to work fine on mysql and sqlite. Haven't bothered checking postgres yet.

share|improve this answer
This should have been chosen as the answer, I guess you posted it much later. – Jesse Dhillon Aug 2 '10 at 0:04
yeah I posted it after I saw referrals from Jacob's answer. – Tom Willis Aug 3 '10 at 2:10
1  
Note that if you're using version 0.6 or greater, the MSBinary import statement in Tom's solution should be changed to "from sqlalchemy.dialects.mysql.base import MSBinary". Source: mail-archive.com/sqlalchemy@googlegroups.com/msg18397.html – Cal Jacobson Sep 24 '10 at 23:04

See also the recipe for Backend-agnostic GUID Type in the SQLAlchemy documentation for column types.

share|improve this answer

In addition to Florian's answer, there's also this blog entry. It looks similar except that it subclasses types.TypeDecorator instead of types.TypeEngine. Does either approach have an advantage or disadvantage over the other one?

share|improve this answer

Unfortunately Backend-agnostic GUID Type from the SQLAlchemy documentation for column types does not seem to work for primary keys in SQLite database engines. Not quite as ecumenical as I was hoping for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.