Changeset 417

Show
Ignore:
Timestamp:
10/21/07 11:17:36 (1 year ago)
Author:
kaste
Message:

changed NewDataDictionary(db->connection) to db->getDictionary();

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/kaste/framework/lib/AkDbManager.php

    r396 r417  
    4040        } 
    4141         
    42         $dict = NewDataDictionary($db->connection); 
     42        $dict =& $db->getDictionary(); 
    4343        $sqlarray = $dict->CreateTableSQL($table_name, $table_fields, $table_options); 
    4444        $dict->ExecuteSQLArray($sqlarray); 
  • branches/kaste/framework/lib/AkInstaller.php

    r407 r417  
    4545        //$this->db->debug = $this->debug; 
    4646 
    47         $this->data_dictionary = NewDataDictionary($this->db->connection); 
     47        $this->data_dictionary =& $this->db->getDictionary(); 
    4848        $this->available_tables = $this->getAvailableTables(); 
    4949    }