update : 2015.11.03
php.shukuma.com검색:
|
maxdb_stmt_executemaxdb_stmt::execute(PECL maxdb >= 1.0) maxdb_stmt_execute -- maxdb_stmt::execute — Executes a prepared Query 설명절차식 형식
bool maxdb_stmt_execute
( resource
$stmt
)객체 기반 형식
bool maxdb_stmt::execute
( void
)
The maxdb_stmt_execute() function executes a query that has been previously
prepared using the maxdb_prepare() function represented by the
If the statement is UPDATE, DELETE, or INSERT, the total number of affected rows can be determined by using the maxdb_stmt_affected_rows() function. Likewise, if the query yields a result set the maxdb_fetch() function is used.
반환값
성공 시 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: 11111 (Georgetown,NY) 22222 (Hubbatown,CA) 참고
|