Changeset 3830
- Timestamp:
- 02/17/08 17:50:29 (2 years ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Task/Dql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Task/Dql.php
r3674 r3830 46 46 $query = new Doctrine_Query(); 47 47 48 $params = explode(',', $this->getArgument('params')); 48 $params = $this->getArgument('params'); 49 $params = $params ? explode(',', $params):null; 49 50 50 51 $this->notify('executing: "' . $dql . '" (' . implode(', ', $params) . ')'); 51 52 52 $results = $query->query($dql , $params);53 $results = $query->query($dql); 53 54 54 55 $this->_printResults($results);