On Friday 04 July 2008 16:19:47 luca72 wrote:
> hello the model is like:
>
> class Test(SQLObject):
> a =UnicodeCol()
> b=UnicodeCol()
> c=UnicodeCol()
>  is a sqlite db
>
> if in the controller i write
>
> Test(a='dsds', b='gsgsg') i get the error that Test() did not get
> expected keyword argument c this is clear, but why if i do:
>
> Test(a='dsds', b='gsgsg', c='gsywu')  i get table test has no column
> named a

I suggest you take a deep look into your database and see if the table test 
has a column a.

Diez

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to