I'm using pylons and sqlalchemy and I was wondering how I could have some randoms ids as primary_key.
|
|
|
|
|
|
|
the best way is to use randomly generated UUIDs:
uuid datatypes are available natively in some databases such as Postgresql (SQLAlchemy has a native PG uuid datatype for this purpose - in 0.5 its called |
||
|
|
|
|
i use this pattern and it works pretty good. source
Though zzzeek I believe is the author of sqlalchemy, so if this is wrong he would know, and I would listen to him. |
||
|
