stripQueryDBID() 보호된 정적인 메소드

Entfernt die DBID aus einer Abfrage (SQL) und gibt die DBID zurueck falls vorhanden, sonst false.
protected static stripQueryDBID ( string &$qry ) : string
$qry string Abfrage
리턴 string
예제 #1
0
 /**
  * Setzt eine Abfrage (SQL) ab, wechselt die DBID falls vorhanden
  *
  * @param $query Abfrage
  * @return boolean True wenn die Abfrage erfolgreich war (keine DB-Errors
  * auftreten), sonst false
  */
 function setDBQuery($qry)
 {
     if (($qryDBID = rex_sql::stripQueryDBID($qry)) !== false) {
         $this->selectDB($qryDBID);
     }
     return $this->setQuery($qry);
 }