Re: [SQLObject] How to create a custom column

2007-01-21 Thread Paul-Michael Agapow
Oleg wrote On Thu, Jan 18, 2007 at 02:43:57PM +, Paul-Michael Agapow wrote: class StringListCol (Col): baseclass = SOStringListCol baseClass = SOStringListCol Thanks Oleg -- Dr Paul-Michael Agapow: VieDigitale / Inst. for Animal Health [EMAIL PROTECTED] / [EMAIL PROTECTED

Re: [SQLObject] How to create a custom column

2007-01-18 Thread Oleg Broytmann
On Thu, Jan 18, 2007 at 02:43:57PM +, Paul-Michael Agapow wrote: > class StringListCol (Col): > baseclass = SOStringListCol baseClass = SOStringListCol ^ Oleg. -- Oleg Broytmannhttp://phd.pp.ru/[EMAIL PROTECTED] Programmers don't die, t

[SQLObject] How to create a custom column

2007-01-18 Thread Paul-Michael Agapow
I'd been trying to define my own custom column class - based on the source and some wiki notes - but can't get it to work. The aim is to store a list of strings, being able to write and read them as a list (while internally storing them as a single eoln-delimited string.) However, my solu