本文整理匯總了PHP中Trigger::setName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Trigger::setName方法的具體用法?PHP Trigger::setName怎麽用?PHP Trigger::setName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Trigger
的用法示例。
在下文中一共展示了Trigger::setName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getData
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
include "prepend.inc.php";
$Server = getData("Server", "integer");
$User = getData("User");
$Triggername = getData("Triggername");
$html = "<h1> Database " . $DB->Name($Server) . " - Trigger " . $Triggername . "</h1>";
if ($Triggername) {
$tri = new Trigger($Server);
$tri->setOwner($User);
$tri->setName($Triggername);
$tri->getData();
$html .= "<table border=0><tr><th>Tag</th><th>Value</th></tr>";
$html .= "<tr><td>Name</td><td>" . $tri->name . "</td></tr>";
$html .= "<tr><td>Owner</td><td>" . $tri->owner . "</td></tr>";
$html .= "<tr><td>Type</td><td>" . $tri->trigger_type . "</td></tr>";
$html .= "<tr><td>Triggering Event</td><td>" . $tri->triggering_event . "</td></tr>";
$html .= "<tr><td>On</td><td>" . $tri->table_owner . "." . $tri->table_name . "</td></tr>";
$html .= "<tr><td>Referencing Names</td><td>" . $tri->referencing_names . "</td></tr>";
$html .= "<tr><td>When Clause</td><td>" . $tri->when_clause . "</td></tr>";
$html .= "<tr><td>Status</td><td>" . $tri->status . "</td></tr>";
$html .= "</table>";
$html .= "<P><B>Trigger body:</b><br>";
$html .= "CREATE OR REPLACE TRIGGER " . $tri->description . "<br>" . nl2br($tri->trigger_body);
$html .= "</P>";
}