上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页
摘要: 查询数据库中的存储过程和函数方法一:select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'//存储过程select `name` from mysql.proc where db = 'your_db_name' and `type` = 'FUNCTION'//函数方法二:show procedure status; //存储过程show function status;//函数查看存储过程或函数的创建代码show crea 阅读全文
posted @ 2013-11-11 15:45 jshaibozhong 阅读(354) 评论(0) 推荐(0) 编辑
摘要: /* 记录浏览历史 */if (!empty($_COOKIE['history'])){ if(stripos($_COOKIE['history'].',',$goods_id.',')===false){ $history = explode(',', $_COOKIE['history']); array_unshift($history, $goods_id); //入栈 while (count($history) > 5) //大于容器容量 { array_... 阅读全文
posted @ 2013-11-10 17:52 jshaibozhong 阅读(317) 评论(0) 推荐(0) 编辑
摘要: #Virtual hosts#Include conf/extra/httpd-vhosts.conf我只要把其中任何一个开启就是吧#去掉就启动不了apache。怎么回事error.log是这样的httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.101 for ServerNamehttpd.exe: Could not reliably determine the server's fully qualified domain na 阅读全文
posted @ 2013-11-02 18:40 jshaibozhong 阅读(1348) 评论(0) 推荐(0) 编辑
摘要: 一、查看邮件是否已被阅读当你在发送邮件时,你或许很想知道该邮件是否被对方已阅读。这里有段非常有趣的代码片段能够显示对方IP地址记录阅读的实际日期和时间。 二、从网友中提取关键字一段伟大的代码片段能够轻松的从网页中提取关键字。$meta = get_meta_tags('http://www.emoticode.net/');$keywords = $meta['keywords'];// Split keywords$keywords = explode(',', $keywords );// Trim them$keywords = array 阅读全文
posted @ 2013-11-02 14:22 jshaibozhong 阅读(209) 评论(0) 推荐(0) 编辑
摘要: mysql的参数赋值语句必须是只能够选出一行,SELECT username,nickname INTO Ausername,Anickname FROM userbase WHERE userid = userid LIMIT 1 ;这样的语句必须要加上limit 1才行。另外,这种赋值语句还有个规矩就是参数名和字段名不能冲突,不然能够执行过去,但是却没有给参数赋值,这是个很隐性的错误,可以参考手册上的:重要: SQL变量名不能和列名一样。如果SELECT ... INTO这样的SQL语句包含一个对列的参考,并包含一个与列相同名字的局部变量,MySQL当前把参考解释为一个变量的名字。 阅读全文
posted @ 2013-11-02 12:00 jshaibozhong 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-10-29 18:18 jshaibozhong 阅读(206) 评论(0) 推荐(0) 编辑
摘要: <?php//数据库连接 $conn = mysql_connect('localhost', 'root', '');mysql_select_db('test', $conn); /*支持事务的表必须是InnoDB类型一段事务中只能出现一次:mysql_query('START TRANSACTION');//开始事务mysql_query(' ROLLBACK ');//回滚事务mysql_query('COMMIT');//提交事务 如果一段事务中出现多次回滚事务,则在 阅读全文
posted @ 2013-10-18 11:21 jshaibozhong 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Mysql错误代码 Mysql错误代码分为两部分,老版本一部分,4.1版本为新的部分 第一部分: mysql的出错代码表,根据mysql的头文件mysql/include/mysqld_error.h整理而成 1005:创建表失败 1006:创建数据库失败 1007:数据库已存在,创建数据库失败 1008:数据库不存在,删除数据库失败 1009:不能删除数据库文件导致删除数据库失败 1010:不能删除数据目录导致删除数据库失败 1011:删除数据库文件失败 1012:不能读取系统表中的记录 1016:文件无法打开,使用后台修复或者使用phpmyadmin进行修复。1020:记录已被其他用户修改 阅读全文
posted @ 2013-10-17 08:20 jshaibozhong 阅读(1888) 评论(0) 推荐(0) 编辑
摘要: cd /root touch test.sh #创建文件vim test.sh#!/bin/shURL="url地址"curl $URL保存 退出#修改文件属性,使其可以执行chmod +x /root/test.sh修改/etc/crontab45 22 * * * root /root/test.sh #表示每天22点45分执行备份# * * * * * #分钟 小时 天 月 星期比如10 3 * * 0,6 hello就是每周六、周日的3点10分执行hello程序。15 4 * * 4-6 hello就是从周四到周六的4点15点执行hello程序。*/2 * * * 阅读全文
posted @ 2013-10-10 18:31 jshaibozhong 阅读(709) 评论(0) 推荐(0) 编辑
摘要: SELECT *,DATE_FORMAT(FROM_UNIXTIME(createtime), "%Y/%m/%d %H:%i:%s") AS dateFormat FROM `InApp_AdLog` where imei != '' ORDER BY id desc limit 10; 阅读全文
posted @ 2013-10-08 10:50 jshaibozhong 阅读(413) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页