WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform
Performs a query on the database

maxdb_multi_query

maxdb->multi_query

(PECL maxdb:1.0-7.6.00.38)

maxdb_multi_query -- maxdb->multi_queryPerforms a query on the database

Description

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.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 Object oriented style

<?php
$maxdb 
= new maxdb("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

$query  "SELECT * FROM dual";

/* execute multi query */
if ($maxdb->multi_query($query)) {
   do {
       
/* store first result set */
       
if ($result $maxdb->store_result()) {
           while (
$row $result->fetch_row()) {
               
printf("%s\n"$row[0]);
           }
           
$result->close();
       }
       
/* print divider */
       
if ($maxdb->more_results()) {
           
printf("-----------------\n");
       }
   } while (
$maxdb->next_result());
}

/* close connection */
$maxdb->close();
?>

Example #2 Procedural style

<?php
$link 
maxdb_connect("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

$query "SELECT * FROM dual";

/* 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 example will output something similar to:

 
 a