|
PHP5中文手册
maxdb_commitmaxdb->commit(PECL maxdb:1.0-7.6.00.38) maxdb->commit — Commits the current transaction 说明Procedural style:
bool maxdb_commit
( resource $link
)
Object oriented style (method) maxdb
bool
commit
( void
)
Commits the current transaction for the database connection specified by the link parameter. 返回值如果成功则返回 TRUE,失败则返回 FALSE。 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php The above examples produces no output. |