Re: [SQLObject] problem with tables

2011-01-19 Thread Oleg Broytman
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/

Re: [SQLObject] problem with tables

2011-01-19 Thread Petr Jakeš
> > > 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 ---

Re: [SQLObject] problem with tables

2011-01-19 Thread Oleg Broytman
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

[SQLObject] problem with tables

2011-01-19 Thread fortuna123 Gazeta.pl
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