Seth York

Results 2 comments of Seth York

I'm getting this same issue. Doing some research leads me to believe it may have something to do with Angular.

You'll want to use parameterized queries to avoid this. So instead of: ```python Query.from_(table).select(table.star).where(Field("val0") == INJECTION) ``` You'd do this: ```python Query.from_(table).select(table.star).where(Field("val0") == Parameter('%(some_where_condition)s')) ``` Then you'd pass the params...