当前位置: 首页>>代码示例>>PHP>>正文


PHP DAOFactory::getMaterialDAO方法代码示例

本文整理汇总了PHP中DAOFactory::getMaterialDAO方法的典型用法代码示例。如果您正苦于以下问题:PHP DAOFactory::getMaterialDAO方法的具体用法?PHP DAOFactory::getMaterialDAO怎么用?PHP DAOFactory::getMaterialDAO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DAOFactory的用法示例。


在下文中一共展示了DAOFactory::getMaterialDAO方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: addMaterial

 /**
  * @param unknown $data
  */
 function addMaterial($data)
 {
     // check to see if the material type exists
     // if not then add it.
     // if so then update it.
     $material = new Material();
     $existing = DAOFactory::getMaterialDAO()->queryByType($data[self::FILAMENT_TYPE]);
     echo ' material ' . $material->type . ' id ' . $material->materialId . ' data : ' . $data[self::FILAMENT_TYPE];
     if ($existing == NULL) {
         $material->type = $data[self::FILAMENT_TYPE];
         $material->materialId = DAOFactory::getMaterialDAO()->insert($material);
     } else {
         $material = $existing;
     }
     return $material;
 }
开发者ID:swdgit,项目名称:intercept,代码行数:19,代码来源:GFSDProcess.php

示例2: queryByKeys

 public function queryByKeys($name, $type, $color, $diameter)
 {
     $material = DAOFactory::getMaterialDAO()->queryByType($type);
     $sql = 'select * from filament where name = ? and material_id = ? and color = ? and size = ?';
     $sqlQuery = new SqlQuery($sql);
     $sqlQuery->set($name);
     $sqlQuery->setNumber($material->materialId);
     $sqlQuery->set($color);
     $sqlQuery->setNumber($diameter);
     return $this->getList($sqlQuery);
 }
开发者ID:swdgit,项目名称:intercept,代码行数:11,代码来源:FilamentDAOImpl.php

示例3: getMaterials

 public static function getMaterials()
 {
     $materials = DAOFactory::getMaterialDAO()->queryAll();
     return $materials;
 }
开发者ID:swdgit,项目名称:intercept,代码行数:5,代码来源:Intercept.php

示例4: getMaterials

 /**
  * pull back the materials based on a given printer
  * @param unknown $printerId
  */
 public static function getMaterials($printerId)
 {
     $materials = DAOFactory::getMaterialDAO()->queryMaterialsByPrinterId($printerId);
     return $materials;
 }
开发者ID:swdgit,项目名称:intercept,代码行数:9,代码来源:MaterialAPI.php


注:本文中的DAOFactory::getMaterialDAO方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。