[Sqlalchemy-tickets] Issue #3524: Unable to insert data on table with column name containing percen
Brought to you by:
zzzeek
|
From: chrisirhc <iss...@bi...> - 2015-09-04 21:08:10
|
New issue 3524: Unable to insert data on table with column name containing percent sign https://bitbucket.org/zzzeek/sqlalchemy/issues/3524/unable-to-insert-data-on-table-with-column chrisirhc: I have a column called "Bookings % change" and it looks like the table is created with the correct schema but when doing an insert, SQLAlchemy is inserting on the column name but escaping the percent sign `%%`. ``` #! (_mysql_exceptions.OperationalError) (1054, \"Unknown column 'Bookings %% change' in 'field list'\") ``` |