PHP Velho Oeste 2024

TokyoTyrantQuery::__construct

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantQuery::__constructConstruct a new query

Descrição

public TokyoTyrantQuery::__construct ( TokyoTyrantTable $table )

Construct a new query object

Parâmetros

table

TokyoTyrantTable object with active database connection

Valor Retornado

Returns a new TokyoTyrantQuery object and throws TokyoTyrantException on error

Exemplos

Exemplo #1 TokyoTyrantQuery::__construct() example

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

$query = new TokyoTyrantQuery($tt);

/* Work with $query */
?>

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top