update : 2015.11.03
php.shukuma.com검색:
|
mysqli::multi_querymysqli_multi_query(PHP 5) mysqli::multi_query -- mysqli_multi_query — Performs a query on the database 설명객체 기반 형식
bool mysqli::multi_query
( string
$query
)절차식 형식 Executes one or multiple queries which are concatenated by a semicolon. To retrieve the resultset from the first query you can use mysqli_use_result() or mysqli_store_result(). All subsequent query results can be processed using mysqli_more_results() and mysqli_next_result(). 인수
반환값
Returns 예제Example #1 mysqli::multi_query() example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력 예시: my_user@localhost ----------------- Amersfoort Maastricht Dordrecht Leiden Haarlemmermeer 참고
|