Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to C# and SQL. But over the last few years while learning both in college a question really begins to burn inside me. Here it is:

It seems to me that there are really two very generic ways to handle input validation (i.e. checking for required fields, and data in the correct ranges ect).

The first, and the way shown traditionally is: Once you develop your UI, and have connected it to a database back end in some manner. On the user interface, you check for correct input, such as blank text boxes, number ranges, or to ensure a radio or check box is selected ect.

The second, and the way shown in database development is: To set check constraints on fields such as no nulls allowed, unique values, and even ranges and required fields.

My dilema is this. Given that in modern languages like C# you can do general execption handling, and also given that major league fault tolerance is built into most databases like SQL Server with regard to handling data changes in respect to committing all or none. Details like this, and to this level, would be hard to program in anything but the simplest of programs.

So my question is, why not build all the requirements directly into the table at the database back end. Take advantage of the aformentioned fault tolerance, and just forget about programming if statements to ensure correct data is input, and instead just use a generic catch all execption handler if the data is not committed.

Perhaps that is how it is done, if so I would really like to know for sure. If not, why? My preference is to avoid writing code whenever possible. Less code, less debugging, and less problems when it comes to updating. So I would tend to go with that approach of letting the DB back end do the work. Is this the generally correct thing to do.

I know that general execption handling is considered "expensive" in terms of resources. But surley once you get past 5 or 10 if statements to handle different fields and their constraints, it must be more efficient code wise to just do a general execption handler. It certantly seems easier to understand overall. (At least the way I do it).

Thanks for your help with this.

share|improve this question
interesting, i've often wondered about this myself – ghostJago Aug 31 '11 at 21:33
2  
This cracked me up: "My preference is to avoid writing code whenever possible. Less code, less debugging, and less problems when it comes to updating." – Dave Ziegler Aug 31 '11 at 21:43
@jack-t-colton - I do software development, the primary rule in our college is to always blame it on the DB guys! :-> – Francis Rodgers Aug 31 '11 at 22:10

5 Answers

up vote 5 down vote accepted

OK, here is why you need it in both places.

First the integrity of the data should be paramount and data can be changed directly in database tables (deliberately through a script to say update a million prices or by accident or even by disgruntled or criminal employees trying to disrupt the database or steal from the company). Therefore is it reckless to avoid using constraints directly in the database and it leads to bad data.

Now at the user interface level, you want to prevent the user from wasting his time submitting bad data and you want to prevent the servers and networks from wasting their time trying to process it, so you write checks at that level. Plus you don't want the data in an inconsistent state if you need to insert to several tables and aren't using a transction (which you should be using but I would suspect it happens less often than it should.) Plus the users hate it when you try the insert and it fails and tells you that X is wrong and then they fix X and now Y is wrong but it was wrong before, the process just didn't get as far as Y before.

share|improve this answer
1  
+1 - the data itself is absolutely paramount, so put constraints and other rules as close to the data as possible (in addition to usability at the app tier). If you miss something in the app, it's better that the app fails than if the database gets corrupted. – Aaron Bertrand Aug 31 '11 at 21:43
+1 - I totally agree with the DB integrety. As pointed out, DB's have extream fault tolerance built in. So for example, a partial recordset cannot be input, its either an all or nothing affair. I also like your point regarding the network traffic. This would seem like a good reason to do checking on the UI, without them you have to submit the data and wait for the DB to tell you it is not correct. I must learn about using transactions. Thank you for highlighting this, can you recommend a good resource. Finally your point on X and Y both wrong. Good design makes sense. Thank you for your answer – Francis Rodgers Aug 31 '11 at 21:59
1  
For SQL server look at Transactions in Books Online for the SQL code to do transactions. Also look at try catch. – HLGEM Aug 31 '11 at 22:37
After some time and taught I have accepted this as the final answer because you hit on two important points that I do consider very important. First the fact that data integrety is paramount. Second only to this, is the user experience (good design). Typically DB people say let the UI handle the error checking, less network traffic, more secure, all that stuff. While programmers say let the DB handle it, more fault tolerance, transaction mgmt ect. You have hit on two very different, but much more important and practical considerations. I still prefer to let the DB do the work though! :-> – Francis Rodgers Jan 3 '12 at 22:11

You do both.

Create constraints at the DB - level, and check for those constraints on the client level as well.

The validation on the DB makes sure that no invalid data gets in your DB, no matter how the data is inputted. The validation at the client side improves the user-experience.

share|improve this answer
I agree with your arguement totally. With one execption. When handling a general execption you can handle specific cases first, and less and less specific cases, right back to a generic case. You can do this in one block of code and the user wont know any different. i.e. a number out of range. This will generate an error when the record is comitted to the DB which your program can then take in and handle as a specific execption. As opposed to actually writing code behind the UI or in some logic elsewhere and duplicating exactly what the DB will do for you for free. Thanks for your answer. – Francis Rodgers Aug 31 '11 at 21:40
Sometimes you need a data access layer between the client and DB where you can implement validation of additional business rules, or complex constraints that the DB engine is unable to represent elegantly. – AaronLS Aug 31 '11 at 21:40
So are you saying then that the examples taugh in college are just that, examples for tutorial. In the real world we will let the DB handle errors when possible or elegant (such as the simple examples I gave), and only program when really needed for very special cases. – Francis Rodgers Aug 31 '11 at 21:43

You generally can't build all the logic for checking into the database. Also not validating user input sufficiently is a good way to open yourself up to attack.

One way to write lesss guard code in every method is 'Code Contracts' a product of microsoft research.

All input should be validated both client and server side. Always.

Also with a giant catch it would be hard to tell which field was in error. So you would end up writing a lot of which field exploded code at the other end.

share|improve this answer
+1 I must make effort to learn about "code contracts". I have never heard of them before. Can you recommend a good resource for beginners. Another great point is the security issues you mentioned. We have not covered that yet. Are code contracts designed to deal with security also. If so then I am still unconvinced however of the need write code for handling every possible type of user input as opposed to using an execption handler. Thanks for your answer. – Francis Rodgers Aug 31 '11 at 21:50
1  

While I generally advocate putting as much in the database as possible (which means that you can have a high degree of confidence about the "raw" data as possible), that isn't always possible, even with the powerful constraints and triggers available in SQL.

In addition, there are high-level "integrity" things which may change over time, and it is not realistic to always have temporally-dynamic conditions in constraints. i.e. all HR records since 2007 must have a non-NULL birthdate, but prior ones are allowed to remain NULL, but any row cannot ever be set back to NULL.

My point is you can almost never put it all in the database.

Put the things in that you can, and put others at higher levels in the system. The database is a very important part of any system, but it isn't the only part. As long as its design helps it protect its perimeter and be able to provide reliable service and guarantee what it says it will guarantee so that other parts of the system can rely on their assumptions, then that's about the most you can ask for.

share|improve this answer

In addition to all answers made here, like that UI control improves drammaticaly UX for the user, and can completely change "image" of your app, that validation on DB is made for correct insert the data to DB, but on client it have to be done for correct insert of the client data.

Consider an example of standalone enterprise app. A client work at home, he filled 20 invoices late night on his notebook in Mongolia. The day after he came back, and sync it with his office SAP server. If the error will be figure out only during sync of the data, you can imagine what awful is this situation.

Just an example. There could a plenty of others, I'm sure.

Good luck.

share|improve this answer
Good example. But surley you would program you client side database on your notebook with the same constraints as those that exist on the server. Doing so will ensure your data can be committed the next day without failure while still not requiring all the extra code behind the UI. Thank you for your answer. – Francis Rodgers Aug 31 '11 at 22:03
@Francis: by saying "compile" in my post I mean the hypothetical client fills invoice's form of some app that perform only DB input data validation, I'm not talking about programming a software :) – Tigran Aug 31 '11 at 22:14
Just edited my post to make it more clear. – Tigran Aug 31 '11 at 22:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.