2014年1月22日

LAMP环境搭建教程

摘要: LAMP环境搭建教程操作系统:centos6.3httpd-2.4.2.tar.gzhttp://httpd.apache.org/download.cgimysql-5.0.18.tar.gzhttp://dev.mysql.com/downloads/php-5.4.3.tar.gzhttp://www.php.net/downloads.php详细过程 感谢http://www.php100.com/html/itnews/it/2013/0219/12062.html 阅读全文

posted @ 2014-01-22 10:53 < Angus > 阅读(133) 评论(0) 推荐(0) 编辑

数据库触发器

摘要: 触发器 其是一种特殊的存储过程。一般的存储过程是通过存储过程名直接调用,而触发器主要是 通过事件(增、删、改)进行触发而被执行的。其在表中数据发生变化时自动强制执行。 常见的触发器有两种:after(for)、instead of,用于insert、update、delete事件。 after(for)表示执行代码后,执行触发器 instead of表示执行代码前,用已经写好的触发器代替你的操作触发器语法: create trigger 触发器的名字 on 操作表 for|after instead of update|insert|delete as SQL语句触发器示... 阅读全文

posted @ 2014-01-22 10:51 < Angus > 阅读(204) 评论(0) 推荐(0) 编辑

导航