What is the meaning of this?
Moved
Solved
Language Bindings
-
raise errors.get_exception(packet)
mysql.connector.errors.DataError: 1292 (22007): Incorrect date value: '26.880000000000000000' for column 'DATE_RECEIVED' at row 1 -
@Gelo What is the meaning of your question?
Could you please provide more information when asking questions?This looks like raising an exception in Python (did you learn Python?):
raise errors.get_exception(packet)
This looks like something wrong with your SQL, but to be able to say what is wrong we need more information, not just those two lines:
mysql.connector.errors.DataError: 1292 (22007): Incorrect date value: '26.880000000000000000' for column 'DATE_RECEIVED' at row 1
-
what is the data type of DATE_RECEIVED? There is must be data type mismatch of data value you are inserting to in to column called DATE_RECEIVED and actual data type of DATE_RECEIVED