fyi, doing the quickwiki tutorial I get an error running the canned
app:
"TypeError: coercing to Unicode: need string or buffer, cx_Oracle.LOB
found"

I'm running against a Oracle 9.2.0.6 db.

sqlalchemy created a LOB object for the models/__init__.py script

pages_table = Table('pages', meta,
    Column('title', String(40), primary_key=True),
    Column('content', String(), default='')
)


Changing to String(2000) solved the immediate problem, but maybe this
is a sqlalchemy bug (or user)? I'm a newbie at this so any pointers on
whether I should be submitting a bug report or stuff like that
appreciated.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to