Skip to main content

Posts

Showing posts from July 11, 2018

Software Testing

In this series of  Software Testing Tutorial   will give you a in-depth understanding on  Testing Concepts, Level of Software Testing, its Types, Methods and Techniques . Software Testing  is the process of identifying the  correctness and quality  of software program. The purpose is to check whether the software satisfies the specific requirements, needs and expectations of the customer. In other words, testing is executing a system or application in order to find software  bugs, defects or errors . Software Testing Tutorial – Audience This Software Testing Tutorial is designed for software testing professionals and fresh graduates who would like to understand the concepts of testing in detail along with its types, methods, levels and techniques. This tutorial provides enough ingredients to start with the software testing process from where you can take yourself to higher levels of expertise. Software Testing Tutorial Ways...

MySQL with Python

MySQL with Python

MySQL with Python In this tutorial you will learn how to use a widely used  database management system  called  MySQL  in Python.  You do not need any previous knowledge of MySQL to use this tutorial, but there is a lot more to MySQL than covered in this short introductory tutorial. Related course SQL Tutorial: Learn SQL with MySQL Database -Beginner2Expert MySQL tutorial Data is stored in a  collection  of tables with each table consisting of a set of rows and columns. This is similar to how data is stored in  SQLite .   To interact with the data stored in tables we use a special-purpose programming language called SQL. Step 1: Install MySQL First you must install a MySQL driver, use the specific installation method below. On Windows: Install MySQLdb using  the installer. On Linux: Install MySQLdb using: sudo apt-get install python-mysqldb yum install mysql-python depending on your vers...