How to check the front end data is saveing in therir corosponding database field. ? - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Interview Questions (https://www.learnqtp.com/forums/Forum-UFT-QTP-Interview-Questions) +--- Thread: How to check the front end data is saveing in therir corosponding database field. ? (/Thread-How-to-check-the-front-end-data-is-saveing-in-therir-corosponding-database-field) |
How to check the front end data is saveing in therir corosponding database field. ? - njnirmal - 08-01-2009 Hi ........ When we do entry at front end in any field like name and all ,than how it will check that name is saving in corresponding datbase field and also check the data that is inserted correct or not. Thanks In Advance .. RE: How to check the front end data is saveing in therir corosponding database fiel - basanth27 - 08-10-2009 Every front end action related to DB stores up in a particular referenced table. obtain the DB flow diagram and then perform the required queries to see if you have the needed data saved in. For eg : Lets say you have added a country name in the front end, on the backend go to the DB server and query as such, Select * from country where country = "Name added" Look out per ascending if that is the name you gave. This is one of the simplest validation. |