Changeset 2734
- Timestamp:
- 08/29/08 20:19:14 (4 months ago)
- Location:
- branches/1.0
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/database/AgaviMysqliDatabase.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/CHANGELOG
r2733 r2734 5 5 ------------------------------ 6 6 7 ADD: Add config option to run arbitrary SQL commands after connecting to a MySQLi database (#831) (David) 7 8 ADD: Allow per-module config_handlers.xml (#826) (Felix) 8 9 ADD: Allow action-style subdirectory dot notation for models (#631) (Felix) -
branches/1.0/src/database/AgaviMysqliDatabase.class.php
r2163 r2734 123 123 // to the resource 124 124 $this->resource =& $this->connection; 125 126 foreach((array)$this->getParameter('init_queries') as $query) { 127 $this->connection->query($query); 128 } 125 129 } 126 130

