PHP Интерфейс Doctrine\OrientDB\Query\QueryInterface

Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
add ( array $updates, string $class, boolean $append ) : Add Adds a relation in a link-list|set.
alter ( string $class, string $attribute, string $value ) : Alter Alters an attribute of a class.
alterProperty ( string $class, string $property, string $attribute, string $value ) : Alter Alters the $property of $class setting $sttribute to $value.
andWhere ( string $condition, mixed $value ) Adds a where condition to the query.
between ( string $key, string $left, string $right ) Converts a "normal" select into an index one.
create ( string $class, string $property ) : mixed Executes a CREATE of a $class, or of the $property in the given $class if $property is specified.
delete ( string $from ) : Delete Executes a DELETE SQL query on the given class (= $from).
drop ( string $class, string $property ) : mixed Drops a $class, or the $property in the given $class if $property is specified.
fields ( array $fields, boolean $append ) : Query Sets the fields to query.
findReferences ( string $rid, array $classes, boolean $append ) : Find Finds documents referencing the document with the given $rid.
from ( array $target, boolean $append ) Adds a from clause to the query.
getRaw ( ) : String Returns the raw SQL query statement.
getTokens ( ) : array Returns the tokens associated to the current query.
grant ( string $permission ) : Grant Converts the query into an GRANT with the given $permission.
in ( array $in, boolean $append ) : mixed Sets the classes in which the query performs is operation.
index ( string $property, string $class, string $type ) : Query Creates a index
indexCount ( string $indexName ) Count the elements of the index $indexName.
indexPut ( string $indexName, string $key, string $rid ) Puts a new entry in the index $indexName with the given $key and $rid.
indexRemove ( string $indexName, string $key, string $rid ) Removes the index $indexName with the given $key/$rid.
insert ( ) : Query Converts the query into an INSERT.
into ( string $target ) : Query Inserts the INTO clause to a query.
limit ( $limit ) Adds a limit to the current query.
link ( string $class, string $property, string $alias, boolean $inverse ) : Link Sets the internal command to a LINK, which is capable to create a reference from the $property of $class, with a given $alias.
on ( string $on ) : Query Sets the ON clause of a query.
orWhere ( string $condition, mixed $value ) Adds an OR clause to the query.
orderBy ( array $order, boolean $append, boolean $first ) Orders the query.
put ( array $values, $class, $append )
remove ( array $updates, string $class, boolean $append ) : Remove Removes a link from a link-set|list.
resetWhere ( ) Resets the WHERE conditions.
revoke ( string $permission ) : Revoke Converts the query into an REVOKE with the given $permission.
select ( array $projections, boolean $append ) Adds an array of fields into the select part of the query.
skip ( $records ) Adds a skip clause to the current query.
to ( string $to ) : Query Adds a subject to the query.
type ( string $type ) : Query Sets the type clause of a query.
unindex ( string $property, string $class ) : Query Removes a index
update ( $class )
values ( array $values, boolean $append ) : Insert Sets the values to be inserted into the current query.
where ( string $condition, mixed $value = null ) Adds the WHERE clause.

Описание методов

add() публичный Метод

Adds a relation in a link-list|set.
public add ( array $updates, string $class, boolean $append ) : Add
$updates array
$class string
$append boolean
Результат Add

alter() публичный Метод

Alters an attribute of a class.
public alter ( string $class, string $attribute, string $value ) : Alter
$class string
$attribute string
$value string
Результат Alter

alterProperty() публичный Метод

Alters the $property of $class setting $sttribute to $value.
public alterProperty ( string $class, string $property, string $attribute, string $value ) : Alter
$class string
$property string
$attribute string
$value string
Результат Alter

andWhere() публичный Метод

Adds a where condition to the query.
public andWhere ( string $condition, mixed $value )
$condition string
$value mixed

between() публичный Метод

You use do a select on an index you can use the between operator.
public between ( string $key, string $left, string $right )
$key string
$left string
$right string

create() публичный Метод

Executes a CREATE of a $class, or of the $property in the given $class if $property is specified.
public create ( string $class, string $property ) : mixed
$class string
$property string
Результат mixed

delete() публичный Метод

Executes a DELETE SQL query on the given class (= $from).
public delete ( string $from ) : Delete
$from string
Результат Delete

drop() публичный Метод

Drops a $class, or the $property in the given $class if $property is specified.
public drop ( string $class, string $property ) : mixed
$class string
$property string
Результат mixed

fields() публичный Метод

Sets the fields to query.
public fields ( array $fields, boolean $append ) : Query
$fields array
$append boolean
Результат Query

findReferences() публичный Метод

You can specify to look for only certain $classes, that can be appended.
public findReferences ( string $rid, array $classes, boolean $append ) : Find
$rid string
$classes array
$append boolean
Результат Find

from() публичный Метод

Adds a from clause to the query.
public from ( array $target, boolean $append )
$target array
$append boolean

getRaw() публичный Метод

Returns the raw SQL query statement.
public getRaw ( ) : String
Результат String

getTokens() публичный Метод

Returns the tokens associated to the current query.
public getTokens ( ) : array
Результат array

grant() публичный Метод

Converts the query into an GRANT with the given $permission.
public grant ( string $permission ) : Grant
$permission string
Результат Grant

in() публичный Метод

For example a FIND REFERENCES uses the IN in order to find documents referencing to a given document in N classes.
public in ( array $in, boolean $append ) : mixed
$in array
$append boolean
Результат mixed

index() публичный Метод

Creates a index
public index ( string $property, string $class, string $type ) : Query
$property string
$class string
$type string
Результат Query

indexCount() публичный Метод

Count the elements of the index $indexName.
public indexCount ( string $indexName )
$indexName string

indexPut() публичный Метод

Puts a new entry in the index $indexName with the given $key and $rid.
public indexPut ( string $indexName, string $key, string $rid )
$indexName string
$key string
$rid string

indexRemove() публичный Метод

Removes the index $indexName with the given $key/$rid.
public indexRemove ( string $indexName, string $key, string $rid )
$indexName string
$key string
$rid string

insert() публичный Метод

Converts the query into an INSERT.
public insert ( ) : Query
Результат Query

into() публичный Метод

Inserts the INTO clause to a query.
public into ( string $target ) : Query
$target string
Результат Query

limit() публичный Метод

Adds a limit to the current query.
public limit ( $limit )

on() публичный Метод

Sets the ON clause of a query.
public on ( string $on ) : Query
$on string
Результат Query

orWhere() публичный Метод

Adds an OR clause to the query.
public orWhere ( string $condition, mixed $value )
$condition string
$value mixed

orderBy() публичный Метод

Orders the query.
public orderBy ( array $order, boolean $append, boolean $first )
$order array
$append boolean
$first boolean

put() публичный Метод

public put ( array $values, $class, $append )
$values array

remove() публичный Метод

Removes a link from a link-set|list.
public remove ( array $updates, string $class, boolean $append ) : Remove
$updates array
$class string
$append boolean
Результат Remove

resetWhere() публичный Метод

Resets the WHERE conditions.
public resetWhere ( )

revoke() публичный Метод

Converts the query into an REVOKE with the given $permission.
public revoke ( string $permission ) : Revoke
$permission string
Результат Revoke

select() публичный Метод

Adds an array of fields into the select part of the query.
public select ( array $projections, boolean $append )
$projections array
$append boolean

skip() публичный Метод

Adds a skip clause to the current query.
public skip ( $records )

to() публичный Метод

Adds a subject to the query.
public to ( string $to ) : Query
$to string
Результат Query

type() публичный Метод

Sets the type clause of a query.
public type ( string $type ) : Query
$type string
Результат Query

unindex() публичный Метод

Removes a index
public unindex ( string $property, string $class ) : Query
$property string
$class string
Результат Query

update() публичный Метод

public update ( $class )

values() публичный Метод

Sets the values to be inserted into the current query.
public values ( array $values, boolean $append ) : Insert
$values array
$append boolean
Результат Insert

where() публичный Метод

Adds the WHERE clause.
public where ( string $condition, mixed $value = null )
$condition string
$value mixed