Hi, it happened to me many times during development, mainly when used custom column types, that I passed wrong type of value to the query.
Then the the following warning was emitted: SAWarning: Unicode type received non-unicode bindparam value The problem with such warning is it does not say 1) were the problem occurred (the line number points to somewhere in sqlalchemy and not to my application) 2) what was the value which caused the problem ( repr() of that value would be nice to have) I always had to hack sqlalchemy/sql/sqltypes.py and add print value before the warning is emitted to actually see what was wrong. Is there any convenient way how to solve such issue? -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
