国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
Definition and Usage
Grammar
Technical details
Examples
Home php教程 php手冊 PHP mysqli_autocommit() function

PHP mysqli_autocommit() function

Sep 23, 2016 am 03:30 AM

Definition and Usage

mysqli_autocommit() function turns on or off automatic submission of database modifications.

Tips: Please take a look at the mysqli_commit() function, which is used to commit the current transaction of the specified database connection. Please see the mysqli_rollback() function for rolling back the current transaction.


Grammar

mysqli_autocommit(connection,mode);

Parameter Description
connection Required. Specifies the MySQL connection to use.
mode Required. If set to FALSE, auto-commit is turned off. If set to TRUE, auto-commit is turned on (committing any pending queries).

Technical details

Return value: Returns TRUE if successful and FALSE if failed.
PHP version: 5+

Examples

Turn off auto-submit, do some queries, then submit the query:

<?<span style="color: #000000;">php 
</span><span style="color: #008000;">//</span><span style="color: #008000;"> 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB </span>
<span style="color: #800080;">$con</span>=<span style="color: #008080;">mysqli_connect</span>("localhost","root","123456","RUNOOB"<span style="color: #000000;">); 
</span><span style="color: #0000ff;">if</span> (<span style="color: #008080;">mysqli_connect_errno</span>(<span style="color: #800080;">$con</span><span style="color: #000000;">)) 
{ 
    </span><span style="color: #0000ff;">echo</span> "連接 MySQL 失敗: " . <span style="color: #008080;">mysqli_connect_error</span><span style="color: #000000;">(); 
} 

</span><span style="color: #008000;">//</span><span style="color: #008000;"> 關(guān)閉自動(dòng)提交</span>
<span style="color: #008080;">mysqli_autocommit</span>(<span style="color: #800080;">$con</span>,<span style="color: #0000ff;">FALSE</span><span style="color: #000000;">);

</span><span style="color: #008000;">//</span><span style="color: #008000;"> 插入一些值</span>
<span style="color: #008080;">mysqli_query</span>(<span style="color: #800080;">$con</span>,"<span style="color: #000000;">INSERT INTO websites (name, url, alexa, country)
VALUES ('百度','https://www.baidu.com/','4','CN')</span>"<span style="color: #000000;">);

</span><span style="color: #008000;">//</span><span style="color: #008000;"> 提交事務(wù)</span>
<span style="color: #008080;">mysqli_commit</span>(<span style="color: #800080;">$con</span><span style="color: #000000;">);

</span><span style="color: #008000;">//</span><span style="color: #008000;"> 關(guān)閉連接</span>
<span style="color: #008080;">mysqli_close</span>(<span style="color: #800080;">$con</span><span style="color: #000000;">);
</span>?>

Original address: http://www.manongjc.com/article/1204.html

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1501
276