[TOC] When I'm old and dying, I plan to look back on my life and say "wow, that was an adventure," not "wow, I sure felt safe. -by Tom git全局设置 git con...
分类:
其他好文 时间:
2015-07-30 16:47:41
阅读次数:
146
SafecrackerProblem Description=== Op tech briefing, 2002/11/02 06:42 CST === "The item is locked in a Klein safe behind a painting in ...
分类:
其他好文 时间:
2015-07-27 18:07:51
阅读次数:
109
#include #include #include //#include //using namespace std;#define SAFE_RELEASE(punk) \ if ((punk) != NULL) \{ (punk)->Release(); (punk) = NULL; }#.....
Redis_DataType.htmlRedis-DataTypeRedis是一个键值对型的数据库,但是支持多种数据结构。具体如下:Binary-safe strings 意义为在进行对二进制的解码和编码时,不具有特殊字符,如转义字符,char数组中的\0,结尾加null等都不是二进制安全的。关键在...
分类:
其他好文 时间:
2015-07-26 15:31:49
阅读次数:
211
在书里看到的,摘录如下:#include #include template struct is_C_style_string:std::false_type{};template struct is_C_style_string:std::true_type{};template struct i...
分类:
其他好文 时间:
2015-07-24 22:07:55
阅读次数:
129
mysql:5.6.24.mysqlworkbench:6.0CE.错误原因:联表删除数据时候出现1175错误。解决方法:set SQL_SAFE_UPDATES = 0; delete user_jurisdiction from user_jurisdiction,userswhere use....
分类:
数据库 时间:
2015-07-23 00:32:16
阅读次数:
249
[root@www]# ./bin/mysqld_safe --user=mysql&[1] 32710[root@www]# 121003 16:40:22 mysqld_safe Logging to '/var/log/mysqld.log'.121003 16:40:22 mysqld_sa...
分类:
数据库 时间:
2015-07-21 06:48:13
阅读次数:
623
1>mysql的配置文件在/etc下的my.cnf2)mysql服务是一系列后台进程,mysql数据库是一系列数据目录和数据文件mysql数据库必须在mysql服务启动之后才可以进行访问3)查看mysql服务的状态:netstat-nlp4)启动/关闭服务cd/usr/bin./mysqld_safe&mysqladmin-urootshutdown5)..
分类:
数据库 时间:
2015-07-19 23:44:36
阅读次数:
277
在mysql5中,可以设置safe mode,比如在一个更新语句中UPDATE table_name SET bDeleted=0;执行时会错误,报:You are using safe update mode and you tried to update a table without a WH...
分类:
数据库 时间:
2015-07-16 13:42:16
阅读次数:
149