Browse Source

use query grammar to parameterize where in sql shortcut.

Taylor Otwell 13 years ago
parent
commit
ae56f68c87
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/database/connection.php

+ 1 - 1
laravel/database/connection.php

@@ -250,7 +250,7 @@ class Connection {
 				// parameters based on the elements in the binding.
 				if (is_array($bindings[$i]))
 				{
-					$parameters = implode(', ', array_fill(0, count($bindings[$i]), '?'));
+					$parameters = $this->grammar()->parameterize($bindings[$i]);
 
 					$sql = preg_replace('~\(\.\.\.\)~', "({$parameters})", $sql, 1);
 				}