On Wed, Jan 19, 2011 at 10:07:23PM +0100, Petr Jake?? wrote:
> thanks for giving me a lesson.
>
> I mean lesson about kindness and helpfulness, not lesson about programming..
>
> Cheers
>
> Petr
Thank you for the nice words!
Oleg.
--
Oleg Broytmanhttp://phdru.name/
>
>
> This sets connection only for the table.
>
> And now, when you have the connection to the specific database - call
>
> Person.createTable()
>
> Oleg,
thanks for giving me a lesson.
I mean lesson about kindness and helpfulness, not lesson about programming..
Cheers
Petr
---
Hi!
On Wed, Jan 19, 2011 at 06:18:21PM +0100, fortuna123 Gazeta.pl wrote:
> class Person(SQLObject):
> ... fname = StringCol()
> ... mi = StringCol(length=1, default=None)
> ... lname = StringCol()
> ...
> >>> Person.createTable()
>
> This create table in base who don't have name but
Hello i have problem with tables when i write
class Person(SQLObject):
... fname = StringCol()
... mi = StringCol(length=1, default=None)
... lname = StringCol()
...
>>> Person.createTable()
This create table in base who don't have name but i have base who i create
write this
created