What numerical range contains mysql error codes?

I would create custom error routing for my webapp in codeigniter, and I would use special error codes for this. What is the numerical range of error codes generated by mysql, so I keep my error codes from this range?

+3
source share
2 answers
+3
source

Client error numbers are maximum at 2999, so something 5000 and above should be safe.

0
source

All Articles