Interview Questions, Answers and Tutorials

Month: September 2014

JMeter Tutorial – Database Test Plan

In this chapter, we will see how to create a simple test plan to test the database server. For our test purpose, we have used the MYSQL database server. You can use any other database for testing. For installation and table creation in MYSQL. Once MYSQL is installed, follow the steps below to set up the database: Create a database with the name “tutorial”. Create a table tutorials_tbl. Insert records into tutorials_tbl : mysql> use TUTORIALS; Database changed mysql> INSERT INTO tutorials_tbl ->(tutorial_title, tutorial_author, submission_date) ->VALUES ->("Learn PHP", "John Poul", NOW()); Query OK, 1 row affected (0.01 sec) mysql> INSERT…