摘要: 收藏夹做一个技术积累还是很不错的要记得经常把收藏夹的东西记录下来 阅读全文
posted @ 2011-10-15 21:44 王帅901 阅读(126) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/amboyna/archive/2008/02/06/1065322.html这篇文章写得很详细 阅读全文
posted @ 2011-10-15 21:43 王帅901 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 参考这篇文章就行但是注意它的导出语句有问题: SQL>create directory dmpdir as '/u01/dmdir'; SQL>grant read,write on directory to test; 这句话错了。。。应该是SQL>grant read,write on directory dmpdir to test;其中test是用户名 阅读全文
posted @ 2011-10-15 21:40 王帅901 阅读(160) 评论(0) 推荐(1) 编辑
摘要: 注意结尾的双引号 单引号 阅读全文
posted @ 2011-10-15 11:56 王帅901 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1: lexical_cast 转化 string =3333333333; 超过int 型表示范围 但不超过unsigned int 型 这样是可以的。。。 完全抛弃了什么atoi atol strtol 神马神马的 太简单咯。。。#include <iostream>#include <boost/lexical_cast.hpp>using namespace std;using namespace boost;int main(){ string str = "33333333333"; unsigned long long int num 阅读全文
posted @ 2011-10-15 01:02 王帅901 阅读(181) 评论(0) 推荐(0) 编辑