|
PHP5中文手册
maxdb_multi_querymaxdb->multi_query(PECL maxdb:1.0-7.6.00.38) maxdb->multi_query — Performs a query on the database 说明Procedural style:
bool maxdb_multi_query
( resource $link
, string $query
)
Object oriented style (method): maxdb
bool
multi_query
( string $query
)
The maxdb_multi_query() works like the function maxdb_query(). Multiple queries are not yet supported. 返回值如果成功则返回 TRUE,失败则返回 FALSE。 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php The above examples would produce the following output:
|