SQL/Database ErrorsError
2200822008 — Datetime Field Overflow
A datetime value is outside the valid range for the field.
postgresql
View details 23P01An INSERT or UPDATE violates an exclusion constraint.
The new row conflicts with an existing row under an exclusion constraint, commonly used for preventing overlapping time ranges.
Check for conflicting rows before inserting. Adjust the range to avoid overlap. Use advisory locks for complex conflict resolution.
22008A datetime value is outside the valid range for the field.
SQLITE_LOCKED (6)A table within the database is locked by the same connection.
SQLITE_AUTH (23)The authorizer callback denied the operation.
MySQL 1213A deadlock was detected between concurrent transactions.
23001A restrict rule prevented the deletion or update of a referenced row.
SQLITE_IOERR (10)A disk I/O error occurred while reading or writing the database.