My code like this:
db = sqlalchemy.create_engine(db_PostgreSQL_DSN)
dbconn = db.connect()
p = dbconn.execute("SELECT name FROM employer WHERE phone LIKE '%3' ")
when I execute SELECT name FROM employer WHERE phone LIKE '%3' , raise this:
sqlalchemy.exceptions.SQLError: (TypeError) unindexable object " ?
How can I solve this problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---