예제 #1
0
파일: Mysqli.php 프로젝트: brikou/zend_db
 /**
  * Register statement prototype
  * 
  * @param Statement $statementPrototype 
  */
 public function registerStatementPrototype(Statement $statementPrototype)
 {
     $this->statementPrototype = $statementPrototype;
     $this->statementPrototype->setDriver($this);
     // needs access to driver to createResult()
 }