Re: [SQLObject] Inheritance

2006-07-10 Thread Ian Wilson
Hello again, Sorry, as usual too quick to post. I found it in sqlobject.inheritance as it shows IN the example after I thought long and hard and decided to not be stupid...how embarassing. I'll try it out, thanks. -Ian On 7/10/06, Ian Wilson <[EMAIL PROTECTED]> wrote: > Hello, > I found t

[SQLObject] Inheritance

2006-07-10 Thread Ian Wilson
Hello, I found this inheritance document(http://www.sqlobject.org/Inheritance.html) on the sqlobject site. It looks fantastic. Which version of sqlobject does this apply to? I have something like SQLObject-0.7.1dev_r1457 installed. The document does not seem to say and I can't seem to find th

Re: [SQLObject] Unicode fun with SQLObject and MySQLdb

2006-07-10 Thread Nadav Samet
Hi, Thanks, but I get the same exception. It seems that the only role of use_unicode is to force StringCol's to be UnicodeCol's. My columns are already UnicodeCol's. Nadav On 7/10/06, Ivan Horvath <[EMAIL PROTECTED]> wrote: > Dear Nadav, > > try using the connection string with use_unicode

[SQLObject] column escaping on Firebird

2006-07-10 Thread Almad
Hello, I'm trying to use SQLObject with Firebird. However, I have problem with class like this: class Phone(SQLObject): uri = StringCol(alternateID=True, length=50) username = UnicodeCol(length=50) password = UnicodeCol(length=40) When trying to retrieve objects, I get File "/us

Re: [SQLObject] Unicode fun with SQLObject and MySQLdb

2006-07-10 Thread Ivan Horvath
Dear Nadav, try using the connection string with use_unicode parameter e.g. connString = "mysql://root:[EMAIL PROTECTED]/test?use_unicode=1" __connection__ = connectionForURI(connString) Saturday, July 8, 2006, 12:54:35 PM, you wrote: NS> Hi, NS> I am using SQLObject-0.8dev_r1814, My