定义和用法
这个mysqli_begin_transaction()用于开始一个新的事务。
用法
mysqli_begin_transaction($con, [$flags, $name]);
参数
Sr.No | 参数及说明 |
---|---|
1 |
con(Mandatory) 这是一个表示与 MySQL 服务器的连接的对象。 |
2 |
flags(Optional) 一个常数,可以是以下之一:
|
3 |
name(Optional) 这是表示事务保存点名称的字符串值。 |
返回值
PHP mysqli_begin_transaction() 函数返回一个布尔值,如果操作成功则为真,否则为假。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。
示例
以下示例演示了 mysqli_begin_transaction() 函数的用法(程序风格) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Beginning the transaction
mysqli_begin_transaction($con, MYSQLI_TRANS_START_READ_ONLY);
print("Transaction Started......\n");
//Creating a table
mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created......\n");
//Inserting values
mysqli_query($con, "INSERT INTO Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted......\n");
//Committing the transaction
mysqli_commit($con);
print("Transaction Saved......\n");
//Closing the connection
mysqli_close($con);
?>
这将产生以下结果 -
Transaction Started...... Table Created...... Records Inserted...... Transaction Saved......
示例
这种面向对象风格的方法的语法是 $con->begin_transaction()。以下是面向对象模式 $minus 中此函数的示例;
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Beginning the transaction
$con->begin_transaction($con, MYSQLI_TRANS_START_READ_ONLY);
print("Transaction Started......\n");
//Creating a table
$con->query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created......\n");
//Inserting values
$con->query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted......\n");
//Committing the transaction
$con->commit();
print("Transaction Saved......\n");
//Closing the connection
$con->close();
?>
这将产生以下结果 -
Transaction Started...... Table Created...... Records Inserted...... Transaction Saved......
相关用法
- PHP mysqli_get_server_info()用法及代码示例
- PHP mysqli_data_seek()用法及代码示例
- PHP mysqli_insert_id()用法及代码示例
- PHP mysqli_fetch_assoc()用法及代码示例
- PHP mysqli_connect_error()用法及代码示例
- PHP mysqli_fetch_all()用法及代码示例
- PHP mysqli_next_result()用法及代码示例
- PHP mysqli_stmt_affected_rows()用法及代码示例
- PHP mysqli_real_escape_string()用法及代码示例
- PHP mysqli_fetch_lengths()用法及代码示例
- PHP mysqli_character_set_name()用法及代码示例
- PHP mysqli_free_result()用法及代码示例
- PHP mysqli_fetch_row()用法及代码示例
- PHP mysqli_debug()用法及代码示例
- PHP mysqli_commit()用法及代码示例
- PHP mysqli_fetch_field()用法及代码示例
- PHP mysqli_kill()用法及代码示例
- PHP mysqli_thread_safe()用法及代码示例
- PHP mysqli_get_connection_stats()用法及代码示例
- PHP mysqli_info()用法及代码示例
注:本文由纯净天空筛选整理自 PHP mysqli_begin_transaction() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。