- Timestamp:
- 10/01/08 21:02:13 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/php/misc/Hermit/src/Hermit/statement/HermitStatement.php
r19344 r20387 11 11 $this->statement = $statement; 12 12 } 13 public function getSqlParameter(){ 14 return $this->parameter; 15 } 13 16 public function execute($parameterValue = array()){ 14 17 $this->parameter->bind($this->statement, $parameterValue); 15 18 return $this->statement->execute(); 19 } 20 public function fetch(){ 21 $args = func_get_args(); 22 $c = count($args); 23 if($c < 1){ 24 return $this->statement->fetch(); 25 } 26 if($c < 2){ 27 return $this->statement->fetch($args[0]); 28 } 29 return call_user_func_array(array($this->statement, 'fetch'), $args); 16 30 } 17 31 public function __call($name, $params){
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)