|
From: Oleg B. <ph...@ma...> - 2004-05-20 13:37:59
|
On Thu, May 20, 2004 at 03:30:05PM +0200, Bjorn Tillenius wrote:
> I'm using SQLObject in a project where I need unicode support. I would
>
> >>> class Word(SQLObject):
> ... value = StringCol()
Just implemet your own column, say, UnicodeColumn.
value = UnicodeColumn()
There are many ways you can redefine its behaviour. Using validators,
e.g.
Oleg.
--
Oleg Broytmann http://phd.pp.ru/ ph...@ph...
Programmers don't die, they just GOSUB without RETURN.
|