Re: [SQLObject] forceDBName col argument

2006-06-06 Thread Oleg Broytmann
On Tue, Jun 06, 2006 at 12:05:12PM +0200, Ivan Horvath wrote: > how to upgrade? > i tried the easy_install.exe without getting 0.7.1 http://sourceforge.net/mailarchive/forum.php?thread_id=10450459&forum_id=30269 I do not use setuptools/easy_install myself. Oleg. -- Oleg Broytm

Re: [SQLObject] forceDBName col argument

2006-06-06 Thread Ivan Horvath
Dear Oleg Broytmann, thank you how to upgrade? i tried the easy_install.exe without getting 0.7.1 Tuesday, June 6, 2006, 11:46:03 AM, you wrote: OB> On Tue, Jun 06, 2006 at 11:30:02AM +0200, Ivan Horvath wrote: >> but it makes an assertionerror requesting to specify forceD

Re: [SQLObject] forceDBName col argument

2006-06-06 Thread Oleg Broytmann
On Tue, Jun 06, 2006 at 11:30:02AM +0200, Ivan Horvath wrote: > but it makes an assertionerror requesting to specify forceDBName > = True argument for every column. col.py:141: if not forceDBName: assert sqlbuilder.sqlIdentifier(name), 'Name must be SQL-safe (letters, num

[SQLObject] forceDBName col argument

2006-06-06 Thread Ivan Horvath
Dear sqlobject-discuss, i have problem with initiating class definition for an already existing tables. this is a mysql database here is my class definition: class ts_user(SQLObject): class sqlmeta: table="ts_user" idName="username"