Service/WindowsAzure/Storage/TableEntityQuery.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to [email protected] so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Service_WindowsAzure
- Subpackage
- Storage
- Version
- $Id: TableEntityQuery.php 24593 2012-01-05 20:35:02Z matthew $
\Zend_Service_WindowsAzure_Storage_TableEntityQuery
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
Methods

_quoteInto(string $text, string | array $value = null) : stringQuotes a variable into a condition
| Name | Type | Description |
|---|---|---|
| $text | string | Condition, can contain question mark(s) (?) for parameter insertion. |
| $value | string | array | Value(s) to insert in question mark (?) parameters. |
| Type | Description |
|---|---|
| string |

_replaceOperators(string $text) : stringReplace operators
| Name | Type | Description |
|---|---|---|
| $text | string |
| Type | Description |
|---|---|
| string |

andWhere(string $condition, string | array $value = null) : \Zend_Service_WindowsAzure_Storage_TableEntityQueryAdd where clause with AND condition
| Name | Type | Description |
|---|---|---|
| $condition | string | Condition, can contain question mark(s) (?) for parameter insertion. |
| $value | string | array | Value(s) to insert in question mark (?) parameters. |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

assembleFrom(boolean $includeParentheses = true) : stringAssemble from
| Name | Type | Description |
|---|---|---|
| $includeParentheses | boolean | Include parentheses? () |
| Type | Description |
|---|---|
| string |

assembleQueryString(boolean $urlEncode = false) : stringAssembles the query string
| Name | Type | Description |
|---|---|---|
| $urlEncode | boolean | Apply URL encoding to the query string |
| Type | Description |
|---|---|
| string |

encodeQuery(string $query) : stringurlencode a query
| Name | Type | Description |
|---|---|---|
| $query | string | Query to encode |
| Type | Description |
|---|---|
| string | Encoded query |

from(string $name) : \Zend_Service_WindowsAzure_Storage_TableEntityQueryFrom clause
| Name | Type | Description |
|---|---|---|
| $name | string | Table name to select entities from |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

orWhere(string $condition, string | array $value = null) : \Zend_Service_WindowsAzure_Storage_TableEntityQueryAdd where clause with OR condition
| Name | Type | Description |
|---|---|---|
| $condition | string | Condition, can contain question mark(s) (?) for parameter insertion. |
| $value | string | array | Value(s) to insert in question mark (?) parameters. |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

orderBy(string $column, string $direction = 'asc') : \Zend_Service_WindowsAzure_Storage_TableEntityQueryOrderBy clause
| Name | Type | Description |
|---|---|---|
| $column | string | Column to sort by |
| $direction | string | Direction to sort (asc/desc) |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

select() : \Zend_Service_WindowsAzure_Storage_TableEntityQuerySelect clause
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

top(int $top = null) : \Zend_Service_WindowsAzure_Storage_TableEntityQueryTop clause
| Name | Type | Description |
|---|---|---|
| $top | int | Top to fetch |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

where(string $condition, string | array $value = null, string $cond = '') : \Zend_Service_WindowsAzure_Storage_TableEntityQueryAdd where clause
| Name | Type | Description |
|---|---|---|
| $condition | string | Condition, can contain question mark(s) (?) for parameter insertion. |
| $value | string | array | Value(s) to insert in question mark (?) parameters. |
| $cond | string | Condition for the clause (and/or/not) |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

wherePartitionKey(string $value = null) : \Zend_Service_WindowsAzure_Storage_TableEntityQuerySpecify partition key
| Name | Type | Description |
|---|---|---|
| $value | string | Partition key to query for |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |

whereRowKey(string $value = null) : \Zend_Service_WindowsAzure_Storage_TableEntityQuerySpecify row key
| Name | Type | Description |
|---|---|---|
| $value | string | Row key to query for |
| Type | Description |
|---|---|
| \Zend_Service_WindowsAzure_Storage_TableEntityQuery |