TokyoTyrantQuery::__construct

(PECL tokyo_tyrant >= 0.1.0)
Construct a new query
public TokyoTyrantQuery::__construct ( TokyoTyrantTable $table )

Construct a new query object

Parameters:
table

TokyoTyrantTable object with active database connection

Returns:

Returns a new TokyoTyrantQuery object and throws TokyoTyrantException on error

Examples:
TokyoTyrantQuery::__construct() example
1
2
3
4
5
6
7
<?php
$tt new TokyoTyrantTable("localhost", 1979);
 
$query new TokyoTyrantQuery($tt);
 
/* Work with $query */
?>
See also:

TokyoTyrantTable::getQuery() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.