You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gives an InterfaceError: Error binding parameter 0 - probably unsupported type.. While it does work if you have datetime.datetime/date objects (instead of datetime64):
I think this should also work in the fallback mode, options are to convert it to datetime.datetime objects and let sqlite3 do the work to convert it to a string, or to convert it to a string directly ourselves.
The text was updated successfully, but these errors were encountered:
From http://stackoverflow.com/questions/24389580/pandas-to-sql-method-gives-error-with-date-column
gives an
InterfaceError: Error binding parameter 0 - probably unsupported type.
. While it does work if you havedatetime.datetime/date
objects (instead ofdatetime64
):and it does also work with a sqlalchemy engine (sqlalchemy converts it to a string):
I think this should also work in the fallback mode, options are to convert it to
datetime.datetime
objects and letsqlite3
do the work to convert it to a string, or to convert it to a string directly ourselves.The text was updated successfully, but these errors were encountered: