Advertisements
Advertisements
प्रश्न
Discuss in detail about MySQL functions with example.
उत्तर
In PHP Scripting language many functions are available for MySQL Database connectivity and executing SQL queries. MySQLi is extension in PHP scripting language which gives access to the MYSQL database. MySQLi extension was introduced version 5.0.0.
The MySQLi extension contains the following important functions which are related to MySQL database connectivity and management.
- Mysqli_connect( ) Function
- Mysqli_close( ) Function
- mysqli_select_db( ) Function
- mysqli_affected_rows( ) Function
- mysqli_connect_error( ) Function
- mysqli_fetch_assoc( ) Function
- Database Connections:
Before accessing MySQL Database, connect to Database Server machine via PHP scripting language using Mysqli_connect() Function.
Syntax:
mysqli_connect(“Server Name”,“User Name”,“Password”,“DB Name”);
This function requires four parameters to connect to database server. Database Server name, Database username, password and Database Name.
- Managing Database Connections:
The below code snippet describes managing database connection methods and features.
<?php $servemame = “localhost”; $usemame = “username”; $password = “password”; $DB_name = “School_DB”; // Create connection $conn = mysqli_connect($servemame, Susemame, $password,$DB_name);
The MySQLi connect function uses these variables and connect the Database server from PHP scripting. If the connection gets fail, the output will be printed with MySQL error code. Otherwise, connection is a success.
- Performing Queries:
The main goal of MySQL and PHP connectivity is to retrieve and manipulate the data from MySQL database server. The SQL query statements are helping with PHP MySQL extension to achieve the objective of MySQL and PHP connection, “mysqliquery” is a function, helps to execute the SQL query statements in PHP scripting language.
Syntax:
mysqli_query(“Connection Object”,’’SQL Query”)
Example:
$con=mysqli_connect(“localhost”,“my_user”,“my_password”,“Student_DB “); $sql=”SELECT student_name,student_age FROM student”;mysqli_query($con,$sql);
- Closing Connection:
mysqli_close( )
Function is used to close an existing opened database connection between PHP scripting and MySQL Database Server.
APPEARS IN
संबंधित प्रश्न
Which is the not a correct MySQL Function in PHP?
How many parameter are required for MYSQLi connect function in PHP?
How many parameter are required for MYSQLi query function in PHP?
Which version of PHP supports MySQLi fuctions?
What are the types MySQLi function available PHP?
Difference between Connection and Close function?
Give few examples of MySQLi Queries.
What is Connection string?
Write is the purpose of MySQLi function available.
Explain in details types of MySQL connection method in PHP?