configure() public method

Configure the TSqlMapManager using the given xml file.
public configure ( $filename = null )
コード例 #1
0
ファイル: TSqlMapManager.php プロジェクト: pradosoft/prado
 /**
  * Loads and parses the SqlMap configuration file.
  * @param string xml configuration file.
  */
 public function configureXml($file)
 {
     $config = new TSqlMapXmlConfiguration($this);
     $config->configure($file);
 }