DEV Community

Discussion on: Data constraints: database layer or app logic?

Collapse
 
dmfay profile image
Dian Fay

Yeah, you need validation on the request before it makes it to the database. What the user enters isn't always what the database stores anyway. It'd be nice if data layers could raise precise errors in a general enough format to make communicating them to the user easy in any scenario but that'd require a lot of stuff to line up just so.