1)选择要查看触发器的数据库。代码如下:
以下为引用的内容: $dbname=$_POST[name];$conn=mysql_connect("localhost","root","root");mysql_select_db($dbname,$conn);mysql_query("set names gb2312"); |
2)执行show triggers语句,并显示所查找到的触发器的详细信息。代码如下:
以下为引用的内容: <?php mailto:$sql=@mysql_query("show'>$sql=@mysql_query("show triggers",$conn);$info=@mysql_fetch_array($sql);if($info==false){?><tr><td height="25" colspan="5" bgcolor="#FFFFFF"><div align="center">该数据库没有设置触发器!</div></td></tr><?php}else{do{?><tr><td height="25" bgcolor="#FFFFFF"><div align="center"><?php echo $info[Trigger];?></div></td><td height="25" bgcolor="#FFFFFF"><div align="center"><?php echo $info[Table];?></div></td><td height="25" bgcolor="#FFFFFF"><div align="center"><?php echo $info[Event];?></div></td><td height="25" bgcolor="#FFFFFF"><div align="center"><?php echo $info[Timing];?></div></td><td height="25" bgcolor="#FFFFFF"><div align="center"><?php echo $info[Statement];?></div></td></tr><?php}while($info=mysql_fetch_array($sql));}?> |