Re: [SQLObject] Changing 'TEXT' to 'LONGTEXT'
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Oleg B. <ph...@ph...> - 2007-04-14 13:08:54
|
On Fri, Apr 13, 2007 at 11:05:54PM +0200, Markus Gritsch wrote: > how about changing 'TEXT' to 'LONGTEXT' for SOStringLikeCol? 'TEXT' > is to short in some cases. -1. TEXT, CHAR and VARCHAR are standard SQL types, universally recognized by all backends. LONGTEXT is MySQL'ish extension. You can use customSQLType or BLOBCol. See col.py. Oleg. -- Oleg Broytmann http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |