{{theTime}}

Search This Blog

Total Pageviews

java.sql.SQLException: The DELETE statement conflicted with the REFERENCE constraint xxxxx

Quick Fix:

Delete the referred record in child table.  Or implement Cascade delete feature.

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...