Changeset 5316
- Timestamp:
- 12/19/08 00:24:28 (7 months ago)
- Location:
- branches
- Files:
-
- 2 added
- 2 modified
-
1.0/lib/Doctrine/Query/Abstract.php (modified) (1 diff)
-
1.0/tests/Ticket/1768TestCase.php (added)
-
1.1/lib/Doctrine/Query/Abstract.php (modified) (2 diffs)
-
1.1/tests/Ticket/1768TestCase.php (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Query/Abstract.php
r5307 r5316 935 935 { 936 936 $dql = $this->getDql(); 937 $params = $this->getParams($params); 937 938 $conn = $this->getConnection(); 938 939 $hash = md5($conn->getName() . $conn->getOption('dsn') . $dql . var_export($params, true)); -
branches/1.1/lib/Doctrine/Query/Abstract.php
r5307 r5316 997 997 { 998 998 $dql = $this->getDql(); 999 $params = $this->getParams($params); 999 1000 $conn = $this->getConnection(); 1000 1001 $hash = md5($conn->getName() . $conn->getOption('dsn') . $dql . var_export($params, true)); … … 1073 1074 1074 1075 $stmt = $this->_conn->execute($query, $params); 1076 1077 $this->_params['exec'] = array(); 1075 1078 1076 1079 return $stmt;