I'm not sure if this is a duplicate of another question, but I have a small PHP
file that calls some SQL
INSERT
and DELETE
for an image tagging system. Most of the time both insertions and deletes work, but on some occasions the insertions don't work.
Is there a way to view why the SQL
statements failed to execute, something similar to when you use SQL
functions in Python
or Java
, and if it fails, it tells you why (example: duplicate key insertion, unterminated quote etc...)?