-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem writing to SQL db with DataFrame column names as numbers #8087
Comments
Can you show |
Is this supposed to be fixed in 0.14.1?
|
If I look at the commit history, that should already have been fixed in 0.14 (6c36769, from #6902). Could you try with 0.14.1 ? |
This is indeed fixed in 0.14.1 |
OK, anyway, thanks for reporting and testing! |
Example:
which creates these two tables with same column names (numbers as string) but different contents:
x1:
x2:
So
x1
table andx2
table have same column names, and as expected I can change the values inx1
with sql query, but pandas seems to failed in instructing sqlalchemy to write the data inx1
columns.The text was updated successfully, but these errors were encountered: