知识&工具

导航

2015年4月7日 #

wamp的mysql密码修改

摘要: ==方法1==通过WAMP打开mysql控制台,提示输入密码,因为现在是空,所以直接按回车。输入“use mysql”,意思是使用mysql这个数据库教程,提示“Database changed”就行.然后输入要修改的密码的sql语句“update user set password=PASSWOR... 阅读全文

posted @ 2015-04-07 10:57 康乐sty 阅读(235) 评论(0) 推荐(0) 编辑

2014年3月28日 #

oracle中的decode的使用

摘要: 含义解释:decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值)该函数的含义如下:IF 条件=值1 THEN RETURN(翻译值1)ELSIF 条件=值2 THEN RETURN(翻译值2) ......ELSIF 条件=值n THEN RETURN(翻译值n)ELSE RETURN(缺省值)END IFdecode(字段或字段的运算,值1,值2,值3) 这个函数运行的结果是,当字段或字段的运算的值等于值1时,该函数返回值2,否则返回值3当然值1,值2,值3也可以是表达式,这个函数使得某些sql语句简单了许多使用方法:1、比较大小se... 阅读全文

posted @ 2014-03-28 11:20 康乐sty 阅读(250) 评论(0) 推荐(0) 编辑

2012年11月26日 #

windows下wamp安装

摘要: 1.apache安装php模块添加:LoadModel php5_module D:/wamp/php/php5apache2_2.dll然后搜索“addtype”,在下方加入 AddType application/x-httpd-php .php 这句话,以使你的服务器能够识别php文件。2.php安装php.ini打开mysql扩展3.mysql安装http://www.jb51.net/article/23876.htm 阅读全文

posted @ 2012-11-26 17:19 康乐sty 阅读(195) 评论(0) 推荐(0) 编辑

2012年10月17日 #

WindowsXP下Wamp集成环境配置memcached注意事项

摘要: 安装过程:Windows下的Memcache安装:1. 下载memcache的windows稳定版,解压放某个盘下面,比如在d:\memcached2. 在终端(也即cmd命令界面)下输入 'd:\memcached\memcached.exe -d install' 安装3. 再输入: 'c:\memcached\memcached.exe -d start' 启动。NOTE: 以后memcached将作为windows的一个服务每次开机时自动启动。这样服务器端已经安装完毕了。4.在php的扩展模块ext目录下查看是否有php_memcache.dll,如果没 阅读全文

posted @ 2012-10-17 10:16 康乐sty 阅读(317) 评论(0) 推荐(0) 编辑

2012年9月29日 #

xp下Xcache安装

摘要: 1.下载http://xcache.lighttpd.net2.php_xcache.dll放到PHP的ext目录下3.Release_Ts文件夹的xcache.ini内容拷贝到php.ini中的最后面4.配置:[xcache-common];; 安装成 zend extension (推荐), 路径一般是 "$extension_dir/xcache.so";; zend_extension = /usr/local/lib/php/extensions/non-debug-non-zts-xxx/xcache.so;; Windows 系统例子:;;zend_exten 阅读全文

posted @ 2012-09-29 10:02 康乐sty 阅读(382) 评论(0) 推荐(0) 编辑

2012年9月17日 #

apache虚拟主机设置

摘要: ServerAdmin hello@jj.com DocumentRoot "D:/a" // 硬盘地址 ServerName d.a.c ServerAlias d.a.com ErrorLog "logs/da.log" // 错误日志文件 Cu... 阅读全文

posted @ 2012-09-17 22:44 康乐sty 阅读(184) 评论(0) 推荐(0) 编辑

2012年8月22日 #

windows下pear安装和phpunit安装

摘要: 1.下载http://pear.php.net/go-pear.phar的go-pear.phar 到php目录2.cmd运行D:\wamp\php5.3.13>php go-pear.phar3.检测版本D:\wamp\php5.3.13>pear versionPEAR Version: 1.9.4PHP Version: 5.3.13Zend Engine Version: 2.3.0 Running on: Windows NT HP 5.1 build 2600 (Windows XP Professional Service Pack) i586然后是phpunit安装 阅读全文

posted @ 2012-08-22 11:25 康乐sty 阅读(270) 评论(0) 推荐(0) 编辑

2012年8月21日 #

jquery框架研究

摘要: 上代码var $ = jQuery = function() { return new jQuery.fn.init();};jQuery.fn = jQuery.prototype = { init: function(args) { this.length = 0; //修改length this.test = function() { //添加test方法 return this.length; }; delete this.jquery; //删除jquery属性 ... 阅读全文

posted @ 2012-08-21 22:31 康乐sty 阅读(109) 评论(0) 推荐(0) 编辑

名人名言

摘要: 学历是铜牌,技术是银牌,人脉是金牌,思考是王牌吾日三省吾身,为人谋而不忠乎?与朋友交而不信乎?传不习乎? 阅读全文

posted @ 2012-08-21 20:30 康乐sty 阅读(77) 评论(0) 推荐(0) 编辑