Ошибки SQL/баз данныхОшибка
0800108001 — Client Unable to Establish Connection
The client could not establish a connection to the database server.
postgresql
Подробнее MySQL 1062An INSERT or UPDATE would create a duplicate value in a unique index.
The value already exists in a UNIQUE or PRIMARY KEY column.
Use INSERT ... ON DUPLICATE KEY UPDATE. Use INSERT IGNORE to skip duplicates. Check for existing values.
-- Duplicate entry
INSERT INTO users (email) VALUES ('dup@test.com')
ON DUPLICATE KEY UPDATE updated_at = NOW();08001The client could not establish a connection to the database server.
22P02A value could not be converted to the required data type.
42501The current user does not have the required privilege.
25001The command cannot be executed inside an active transaction.
25P02A command was issued in a transaction that has already failed.
23503An INSERT or UPDATE violates a foreign key constraint.