|
Последние активные темы форума |
|
maxdb_multi_query
(no version information, might be only in CVS) maxdb_multi_query -- Performs a query on the database
DescriptionПроцедурный стиль: bool maxdb_multi_query ( resource link, string query ) The maxdb_multi_query() works like the function
maxdb_query(). Multiple queries are not yet supported.
Return valuesВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Example
Пример 1. Процедурный стиль
<?php
$link
=
maxdb_connect
(
"localhost"
,
"MONA"
,
"RED"
);
/* check connection */
if (
maxdb_connect_errno
()) {
printf
(
"Connect failed: %s\n"
,
maxdb_connect_error
());
exit();
}
$query
=
"SELECT * FROM dual"
;
$query
.=
"SELECT name FROM hotel.city ORDER BY zip"
;
/* execute multi query */
if (
maxdb_multi_query
(
$link
,
$query
)) {
do {
/* store first result set */
if (
$result
=
maxdb_store_result
(
$link
)) {
while (
$row
=
maxdb_fetch_row
(
$result
)) {
printf
(
"%s\n"
,
$row
[
0
]);
}
maxdb_free_result
(
$result
);
}
/* print divider */
if (
maxdb_more_results
(
$link
)) {
printf
(
"-----------------\n"
);
}
} while (
maxdb_next_result
(
$link
));
}
/* close connection */
maxdb_close
(
$link
);
?>
|
|
The above examples would produce the following output:
Warning: maxdb_multi_query(): -3008 POS(31) Invalid keyword or missing delimiter <...> |
|