Database Testing :
The main aim of database testing is verify the data that are uploaded in the application (front-end) is stored in the database (back-end) or not.
In this tutorial you can learn the concepts which is required for database Testing
Pre-Requisites: MySql Need to be installed on Your System.
Click Here for the installation process of Mysql
After successful installation of mysql open mysql and create database
Creating Database in Mysql
create database <Database name>;
EX: mysql> create database Testdatabase;
Query OK, 1 row affected (0.01 sec)
The main aim of database testing is verify the data that are uploaded in the application (front-end) is stored in the database (back-end) or not.
In this tutorial you can learn the concepts which is required for database Testing
Pre-Requisites: MySql Need to be installed on Your System.
Click Here for the installation process of Mysql
After successful installation of mysql open mysql and create database
Creating Database in Mysql
create database <Database name>;
EX: mysql> create database Testdatabase;
Query OK, 1 row affected (0.01 sec)
No comments:
Post a Comment