मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता १२

Discuss in detail about MySQL functions with example. - Computer Applications

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.

  1. Mysqli_connect( ) Function
  2. Mysqli_close( ) Function
  3. mysqli_select_db( ) Function
  4. mysqli_affected_rows( ) Function
  5. mysqli_connect_error( ) Function
  6. 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.
shaalaa.com
MYSQL Function in PHP
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 9: Connecting PHP and MYSQL - Evaluation - PART – IV [पृष्ठ १३२]

APPEARS IN

सामाचीर कलवी Computer Applications [English] Class 12 TN Board
पाठ 9 Connecting PHP and MYSQL
Evaluation - PART – IV | Q 1. | पृष्ठ १३२
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×