mysql
xieye114
这个作者很懒,什么都没留下…
展开
-
mysql在日志中显示所有查询的配置
http://www.cnblogs.com/sleepywang/archive/2008/10/22/1316825.html[code="java"][mysqld]log="d:/mysql.log"[/code]加了这句话,重启就可以了。====================================================...原创 2011-07-05 09:50:54 · 92 阅读 · 0 评论 -
一个mysql_PDO错误的解决
新版本的pdo会有这个问题: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to ru...原创 2011-09-26 15:38:14 · 693 阅读 · 0 评论 -
mysql5.5编译
参考了http://www.centos.bz/2011/09/linux-compile-install-mysql-5-5-15-from-source/海哥centos blog centos 64位mysql5.5.14 yum install ncurses-devel 先确保删除原有的mysqlyum info installed |grep ...原创 2012-11-22 09:26:16 · 83 阅读 · 0 评论 -
mysql设用户设密码
都是抄的。添加最高权限用户假设root的密码是passwordGrant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;mysql修改用户表后的刷新权限命令flush privileges;上两个命令都是在mysql客户端执行。记得要删除空密码...原创 2013-12-11 16:45:18 · 120 阅读 · 0 评论 -
mysql全部sql执行日志
[code="java"]set global log_output='table';-- 查看mysql查询日志位置show variables like "%general_log%";-- 查看mysql记录到哪里show variables like "%log_output%";-- 设置会话变量的值 查询日志set global genera...原创 2017-12-15 00:19:32 · 1867 阅读 · 0 评论