Menu

#242 Using idName with fromDatabase; id col issues

closed-fixed
General (125)
5
2009-05-18
2008-07-22
No

See this post:

http://thread.gmane.org/gmane.comp.python.sqlobject/9360

When using fromDatabase = True with idName:

class SystemsInfo(SQLObject):
class sqlmeta:
fromDatabase = True
table = 'SystemsInfo'
idType = str
idName = 'SystemName'
lazyUpdate = True

.. an attempt to insert a new row with all other columns but the index (SystemName) defined results in a duplicate column error:

item = SystemsInfo(id='uniquename')

SystemName is used both as the id column and is in place in the normal column listing.

Discussion

  • Oleg Broytman

    Oleg Broytman - 2009-05-18
    • assigned_to: nobody --> phd
    • status: open --> closed-fixed
     
  • Oleg Broytman

    Oleg Broytman - 2009-05-18

    Fixed in the revisions 3881:3888.

     

Log in to post a comment.