PHP » GoLang |
login |
register |
about
|
GoLang maxdb_stmt_execute
request it (382)
GoLang replacement for PHP's maxdb_stmt_execute
[edit | history]
maxdb_stmt_executemaxdb_stmt::execute(PECL maxdb >= 1.0) maxdb_stmt_execute -- maxdb_stmt::execute — Executes a prepared Query DescriptionProcedural style
bool maxdb_stmt_execute
( resource
$stmt
)Object oriented style
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.
Return Values
Returns ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above example will output something similar to: 11111 (Georgetown,NY) 22222 (Hubbatown,CA) See Also
|
more
Recently updated
more
Most requested
|