mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-01 03:26:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @link https://www.yiiframework.com/
 | |
|  * @copyright Copyright (c) 2008 Yii Software LLC
 | |
|  * @license https://www.yiiframework.com/license/
 | |
|  */
 | |
| 
 | |
| namespace yii\db\mssql\conditions;
 | |
| 
 | |
| use yii\base\NotSupportedException;
 | |
| use yii\db\Expression;
 | |
| 
 | |
| /**
 | |
|  * {@inheritdoc}
 | |
|  *
 | |
|  * @author Dmytro Naumenko <d.naumenko.a@gmail.com>
 | |
|  * @since 2.0.14
 | |
|  */
 | |
| class InConditionBuilder extends \yii\db\conditions\InConditionBuilder
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      * @throws NotSupportedException if `$columns` is an array
 | |
|      */
 | |
|     protected function buildSubqueryInCondition($operator, $columns, $values, &$params)
 | |
|     {
 | |
|         if (is_array($columns)) {
 | |
|             throw new NotSupportedException(__METHOD__ . ' is not supported by MSSQL.');
 | |
|         }
 | |
| 
 | |
|         return parent::buildSubqueryInCondition($operator, $columns, $values, $params);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected function buildCompositeInCondition($operator, $columns, $values, &$params)
 | |
|     {
 | |
|         $quotedColumns = [];
 | |
|         foreach ($columns as $i => $column) {
 | |
|             if ($column instanceof Expression) {
 | |
|                 $column = $column->expression;
 | |
|             }
 | |
|             $quotedColumns[$i] = strpos($column, '(') === false ? $this->queryBuilder->db->quoteColumnName($column) : $column;
 | |
|         }
 | |
|         $vss = [];
 | |
|         foreach ($values as $value) {
 | |
|             $vs = [];
 | |
|             foreach ($columns as $i => $column) {
 | |
|                 if ($column instanceof Expression) {
 | |
|                     $column = $column->expression;
 | |
|                 }
 | |
|                 if (isset($value[$column])) {
 | |
|                     $phName = $this->queryBuilder->bindParam($value[$column], $params);
 | |
|                     $vs[] = $quotedColumns[$i] . ($operator === 'IN' ? ' = ' : ' != ') . $phName;
 | |
|                 } else {
 | |
|                     $vs[] = $quotedColumns[$i] . ($operator === 'IN' ? ' IS' : ' IS NOT') . ' NULL';
 | |
|                 }
 | |
|             }
 | |
|             $vss[] = '(' . implode($operator === 'IN' ? ' AND ' : ' OR ', $vs) . ')';
 | |
|         }
 | |
| 
 | |
|         return '(' . implode($operator === 'IN' ? ' OR ' : ' AND ', $vss) . ')';
 | |
|     }
 | |
| }
 | 
