MySQLi - Begin Transaction



Syntax

public bool mysqli::begin_transaction ([ int $flags [, string $name ]] )

Definition and Usage

It used to start a transaction.

Example

Try out following example −

<?php
   $servername = "localhost:3306";
   $username = "root";
   $password = "";
   $dbname = "TUTORIALS";
   $conn = new mysqli($servername, $username, $password, $dbname);
   
   if ($conn->connect_error) {
      die("Connection failed: " . $conn->connect_error);
   } 
   echo"Database connected \n";
   mysqli_begin_transaction($conn, MYSQLI_TRANS_START_READ_ONLY);

   mysqli_query($conn, "SELECT id, name FROM tutorials_auto LIMIT 1");
   mysqli_commit($conn);
   
   mysqli_close($conn);
?>

The sample output of the above code should be like this -

Database connected
mysqli_useful_functions.htm
Advertisements