PHP Doku:: Get the hint string of the query - tokyotyrantquery.hint.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische Datenbankerweiterungentokyo_tyrantThe TokyoTyrantQuery classTokyoTyrantQuery::hint

Ein Service von Reinhard Neidl - Webprogrammierung.

The TokyoTyrantQuery class

<<TokyoTyrantQuery::current

TokyoTyrantQuery::key>>

TokyoTyrantQuery::hint

(No version information available, might only be in SVN)

TokyoTyrantQuery::hintGet the hint string of the query

Beschreibung

public string TokyoTyrantQuery::hint ( void )

Get the hint string of the query. The hint string contains information about an executed query and it could be compared to for example MySQL EXPLAIN statement.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

This method always returns a string

Beispiele

Beispiel #1 TokyoTyrantQuery::hint example

<?php
$tt 
= new TokyoTyrantTable("localhost"1979);
$tt->vanish();

for (
$i 0$i 11$i++) {
     
$tt->put(null, array('a_col' => 'a' $i'b_col' => 'b' $i));
}

$query $tt->getQuery();
$query->addCond('a_col'TokyoTyrant::RDBQC_STRBW'a');

$query->search();
var_dump($query->hint());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(72) "
scanning the whole table
result set size: 11
leaving the natural order
"

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)