Changeset 417
- Timestamp:
- 10/21/07 11:17:36 (1 year ago)
- Files:
-
- branches/kaste/framework/lib/AkDbManager.php (modified) (1 diff)
- branches/kaste/framework/lib/AkInstaller.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/kaste/framework/lib/AkDbManager.php
r396 r417 40 40 } 41 41 42 $dict = NewDataDictionary($db->connection);42 $dict =& $db->getDictionary(); 43 43 $sqlarray = $dict->CreateTableSQL($table_name, $table_fields, $table_options); 44 44 $dict->ExecuteSQLArray($sqlarray); branches/kaste/framework/lib/AkInstaller.php
r407 r417 45 45 //$this->db->debug = $this->debug; 46 46 47 $this->data_dictionary = NewDataDictionary($this->db->connection);47 $this->data_dictionary =& $this->db->getDictionary(); 48 48 $this->available_tables = $this->getAvailableTables(); 49 49 }
