PHP Класс Prado\Data\Common\Mssql\TMssqlCommandBuilder

С версии: 3.1
Наследование: extends Prado\Data\Common\TDbCommandBuilder
Показать файл Открыть проект

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

Метод Описание
applyLimitOffset ( $sql, $limit, $offset ) : string Overrides parent implementation. Alters the sql to apply $limit and $offset.
getLastInsertID ( ) : integer Overrides parent implementation. Uses "SELECT @@Identity".

Защищенные методы

Метод Описание
findOrdering ( string $sql ) : array Base on simplified syntax http://msdn2.microsoft.com/en-us/library/aa259187(SQL.80).aspx
joinOrdering ( $orders ) : string
reverseDirection ( $orders ) : array
rewriteLimitOffsetSql ( $sql, integer $limit, integer $offset ) : sql Rewrite sql to apply $limit > and $offset > 0 for MSSQL database.

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

applyLimitOffset() публичный метод

The idea for limit with offset is done by modifying the sql on the fly with numerous assumptions on the structure of the sql string. The modification is done with reference to the notes from http://troels.arvin.dk/db/rdbms/#select-limit-offset SELECT * FROM ( SELECT TOP n * FROM ( SELECT TOP z columns -- (z=n+skip) FROM tablename ORDER BY key ASC ) AS FOO ORDER BY key DESC -- ('FOO' may be anything) ) AS BAR ORDER BY key ASC -- ('BAR' may be anything) Regular expressions are used to alter the SQL query. The resulting SQL query may be malformed for complex queries. The following restrictions apply
  • In particular, commas should NOT be used as part of the ordering expression or identifier. Commas must only be used for separating the ordering clauses.
  • In the ORDER BY clause, the column name should NOT be be qualified with a table name or view name. Alias the column names or use column index.
  • No clauses should follow the ORDER BY clause, e.g. no COMPUTE or FOR clauses.
public applyLimitOffset ( $sql, $limit, $offset ) : string
Результат string SQL with limit and offset.

findOrdering() защищенный метод

Base on simplified syntax http://msdn2.microsoft.com/en-us/library/aa259187(SQL.80).aspx
protected findOrdering ( string $sql ) : array
$sql string
Результат array ordering expression as key and ordering direction as value

getLastInsertID() публичный метод

Overrides parent implementation. Uses "SELECT @@Identity".
public getLastInsertID ( ) : integer
Результат integer last insert id, null if none is found.

joinOrdering() защищенный метод

protected joinOrdering ( $orders ) : string
Результат string concat the orderings

reverseDirection() защищенный метод

protected reverseDirection ( $orders ) : array
Результат array ordering with reversed direction.

rewriteLimitOffsetSql() защищенный метод

See http://troels.arvin.dk/db/rdbms/#select-limit-offset
protected rewriteLimitOffsetSql ( $sql, integer $limit, integer $offset ) : sql
$limit integer > 0
$offset integer > 0
Результат sql modified sql query applied with limit and offset.