Sujet : Re: VMS x86-64 database server
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.os.vmsDate : 10. Jul 2025, 02:21:48
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <104n4jb$gs8r$2@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
User-Agent : Pan/0.162 (Pokrosvk)
On Wed, 9 Jul 2025 19:51:30 -0400, Arne Vajhøj wrote:
error_reporting(E_ERROR) is not need to get SQL errors - it is to avoid
getting warnings about mysql extension being obsolete.
I think you need
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
in order to get error exceptions raised about incorrect MySQL. Sensible
languages would do this by default.