Mashmokh’s boss, Bimokh, didn’t like Mashmokh. So he fired him. Mashmokh decided to go to university and participate in ACM instead of finding a new job. He wants to become a member of Bamokh’s team. I...
分类:
其他好文 时间:
2015-03-17 12:26:24
阅读次数:
126
oracle删除日志文件
删除日志文件的语法如下:
alter database drop logfile member logfile_name;
删除日志文件需要注意如下几点:
1.该日志文件所在的的日志文件组不能处于current状态,需要执行一次手动日志切换,将该日志文件组的状态修改为inactive
2.该日志文件所在的日志文件组中必须包含有其他的日志成员。
3如果数据库运行...
分类:
数据库 时间:
2015-03-13 18:46:59
阅读次数:
155
将onethink和phpwind数据库安装在一起,使用通用的表前缀。
将onethink的member表指向phpwind有user表
以下为onethink安装在根目录下,phpwind安装在bbs目录下的情况
修改onethink中的is_login函数
function is_login(){
$site=include('./bbs/data/cache/config....
自动加载函数 conf/config.php 配置 ‘LOAD_EXT_FILE‘=>‘string,encoding‘ //自动加载Member/Common/string.php和encoding.php 手动加载函数 使用核心函数load() load(@.sring); //手动加载Member/Common/string....
分类:
其他好文 时间:
2015-03-13 12:50:52
阅读次数:
442
DescriptionThe French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter'e'. He was a member of the Oulipo group. ...
分类:
其他好文 时间:
2015-03-12 20:40:22
阅读次数:
145
1、
作用域符号::的前面一般是类名称,后面一般是该类的成员名称,C++为例避免不同的类有名称相同的成员而采用作用域的方式进行区分
如:A,B表示两个类,在A,B中都有成员member。那么
A::member就表示类A中的成员member
B::member就表示类B中的成员member
2、
全局作用域符号:
例如:
#include...
分类:
编程语言 时间:
2015-03-11 21:42:25
阅读次数:
178