How to find out if a record already exists in a database, If it doesn't Insert A New Record
NOTE! Now it is even easier to check if a record exists in your database, using App Connect Form Validator. Check the tutorial here: Check if a record exists in your database
I've seen this question posed many times in the ASP Q&A Messageboard... Typically this is done to determine if a user name already exists, common to many login required sites. Many people query the database and then check the values against the returned values through a loop of some sort. If they don't find it, they then add the record.
Read More