當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Conn::getTableName方法代碼示例

本文整理匯總了PHP中Conn::getTableName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Conn::getTableName方法的具體用法?PHP Conn::getTableName怎麽用?PHP Conn::getTableName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Conn的用法示例。


在下文中一共展示了Conn::getTableName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ExeRead

 /**
  * <b>Exe Read:</b> Executa uma leitura simplificada com Prepared Statments. Basta informar o nome da tabela,
  * os termos da seleção e uma analize em cadeia (ParseString) para executar.
  * @param STRING $Tabela = Nome da tabela
  * @param STRING $Termos = WHERE | ORDER | LIMIT :limit | OFFSET :offset
  * @param STRING $ParseString = link={$link}&link2={$link2}
  * @return Conn
  */
 public function ExeRead($Tabela, $Termos = null, $Places = null)
 {
     $this->Places = (array) $Places;
     $this->Select = "SELECT * FROM " . parent::getTableName($Tabela) . " {$Termos}";
     $this->Execute();
     return $this;
 }
開發者ID:jhonlennon,項目名稱:estrutura-mvc,代碼行數:15,代碼來源:Read.class.php

示例2: ExeCreate

 /**
  * <b>ExeCreate:</b> Executa um cadastro simplificado no banco de dados utilizando prepared statements.
  * Basta informar o nome da tabela e um array atribuitivo com nome da coluna e valor!
  * 
  * @param STRING $Tabela = Informe o nome da tabela no banco!
  * @param ARRAY $Dados = Informe um array atribuitivo. ( Nome Da Coluna => Valor ).
  * @return \Create
  */
 public function ExeCreate($Tabela, array $Dados)
 {
     $this->Tabela = (string) Conn::getTableName($Tabela);
     $this->Dados = self::format_values($Tabela, $Dados);
     if (empty($this->Dados)) {
         throw new Exception("A array de dados está vazia. Tentativa de salvar dados na tabela `{$Tabela}` não foi concluída.");
     }
     $this->getSyntax();
     $this->Execute();
     return $this;
 }
開發者ID:jhonlennon,項目名稱:estrutura-mvc,代碼行數:19,代碼來源:Create.class.php

示例3: optEstados

function optEstados($estado = '', $titleUf = 'title')
{
    $html = "";
    $read = new Read();
    $read->FullRead("\r\n\t    SELECT *, IF(:estado LIKE a.title OR :estado = a.uf OR :estado = a.id, 1, 0) AS `selected`\r\n\t    FROM `" . Conn::getTableName('estados') . "` AS a\r\n\t    ORDER BY a.title ASC, a.uf ASC\r\n\t    ", array('estado' => $estado));
    foreach ($read->getResult() as $v) {
        $html .= formSelectOption($titleUf == 'uf' ? $v['uf'] : $v['title'], $v['id'], $v['selected'] ? true : false);
    }
    return $html;
}
開發者ID:jhonlennon,項目名稱:estrutura-mvc,代碼行數:10,代碼來源:form.php


注:本文中的Conn::getTableName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。