コード例 #1
0
ファイル: Select.php プロジェクト: jbzoo/sqlbuilder
 /**
  * @return string
  * @throws Exception
  */
 public function __toString()
 {
     if (!isset($this->_blocks['select'])) {
         $this->select('*');
     }
     return $this->_explain . 'SELECT ' . parent::__toString();
 }
コード例 #2
0
ファイル: Delete.php プロジェクト: jbzoo/sqlbuilder
 /**
  * @return string
  * @throws Exception
  */
 public function __toString()
 {
     return 'DELETE ' . parent::__toString();
 }
コード例 #3
0
ファイル: Insert.php プロジェクト: jbzoo/sqlbuilder
 /**
  * @return string
  * @throws Exception
  */
 public function __toString()
 {
     return $this->_type . ' ' . parent::__toString();
 }
コード例 #4
0
ファイル: Update.php プロジェクト: jbzoo/sqlbuilder
 /**
  * @return string
  * @throws Exception
  */
 public function __toString()
 {
     return 'UPDATE ' . parent::__toString();
 }