2014年4月11日
摘要:
1.VC编译选项 多线程(/MT)多线程调试(/MTd)多线程 DLL (/MD)多线程调试 DLL (/MDd)2. C 运行时库 库文件Single thread(static link) MLlibc.libDebug single thread(static link) MLd libcd.libMultiThread(static link) MT libcmt.libDebug multiThread(static link) MTd libcmtd.libMultiThread(dynamic link) MD msvert.libDebug multiThread(dynami
阅读全文
posted @ 2014-04-11 22:53
de0319gh
阅读(224)
推荐(0)
2014年3月19日
摘要:
按照以下文章正确将oracle安装在linux上http://yiyiboy2010.iteye.com/blog/1670795 http://mirrors.163.com/centos/6.5/os/x86_64/Packages/ 云包地址
阅读全文
posted @ 2014-03-19 16:18
de0319gh
阅读(150)
推荐(0)
摘要:
1:登录sqlplus sqlplus /nolog conn sys/bcc@gis as sysdba2:修改表空间位offline alter tablespace users offline;3:拷贝表空间文件4:修改oracle表空间指向地址 alter database rename file '/user/oracle/data/user01.dbf' to '/home/oracle/data/user01.dbf';5:修改表空间为online alter tablespace users online;6:查看数据库表空间存放位置 selec
阅读全文
posted @ 2014-03-19 16:15
de0319gh
阅读(712)
推荐(0)
2014年3月13日
摘要:
#include #include #include using namespace std;class cstring{public: cstring(char *str=""); cstring(const cstring &str); cstring operator+(const cstring &str); //赋值运算符只能用成员函数重载,不能被继承,用户自己不重载系统会默认冲在一个(但不一定能满足要求) cstring &operator=(const cstring &str); //重载函数调用运算符,只能用成员函数 int
阅读全文
posted @ 2014-03-13 00:10
de0319gh
阅读(511)
推荐(0)
摘要:
#include using namespace std;class String{public: String(const char *str = NULL);//默认构造函数 String(const String &str);//复制构造函数 ~String();//析构函数 String operator+(const String & str);//字符串连接 String & operator=(const String &str);//字符串赋值 bool operator==(const String &str);//判断是否字符串相等
阅读全文
posted @ 2014-03-13 00:06
de0319gh
阅读(580)
推荐(0)
2014年3月10日
摘要:
1 . .bash_profile2 source .bash_profile3 exec bash --login
阅读全文
posted @ 2014-03-10 13:28
de0319gh
阅读(6728)
推荐(0)
2014年3月9日
摘要:
sqlplus /as sysdba 连补上,ora-01031的解决方法:(1)检查sqlnet.ora是否包含这句话:SQLNET.AUTHENTICATION_SERVICES=(NTS),没有加上。(2)检查登录的windows用户(administrator或安装oracle时候使用的用户)是不是包含在ORA_DBA组中,域用户没有连上服务器时就可能出现这种现象。(3)要保证remote_login_passwordfile 参数=EXCLUSIVE.(4)看看是否需要使用orapassw生成口令文件.0.select instance_name from v$instance;查看
阅读全文
posted @ 2014-03-09 00:53
de0319gh
阅读(984)
推荐(0)
2013年10月28日
摘要:
准备工作:1、下载 cocos2d-x下载地址:http://cdn.cocos2d-x.org/cocos2d-x-2.2.zip2、下载 python 2.7.3 下载地址:http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi3、下载 VS2010下载地址:百度搜索安装步骤:1、安装VS20102、安装Python,并设置Python环境变量。 如:安装位置是D:\Python27。 在环境变量Path中添加D:\Python27如果不会设置环境变量参考http://www.cocoachina.com/bbs/read.php?t
阅读全文
posted @ 2013-10-28 23:29
de0319gh
阅读(290)
推荐(0)
2013年8月28日
摘要:
在开始之前,先熟悉几个类及部分属性、方法:CSharpCodeProvider、ICodeCompiler、CompilerParameters、CompilerResults、Assembly。一、CSharpCodeProvider提供对C#代码生成器和代码编译器的实例的访问。如果要动态生成VB代码,可以使用VBCodeProvider。CreateCompiler():获取编译器的实例。二、ICodeCompiler定义用于调用源代码编译的接口或使用指定编译器的CodeDOM树。每种编译方法都接受指示编译器的CompilerParameters对象,并返回指示编译结果的CompilerR
阅读全文
posted @ 2013-08-28 23:03
de0319gh
阅读(1663)
推荐(0)
2013年8月18日
摘要:
一、空间表的元数据将表的SDO_GEOMETRY列的所有对象作为一个空间层。Spatial需要对所有空间对象进行验证、创建索引和查询。此时需要为图层指定适当的元数据,该数据包含如下信息:维度、维度边界、容差、坐标系。每个图层的上述信息填充到USER_SDO_GEOM_METADATA字典试图中。SQL>DESCRIBE USER_SDO_GEOM_METADATA USER_SDO_GEOM_METADATA视图列名类型列名描述TABLE_NAMEVARCHAR2()COLUMN_NAMEVARCHAR2()SRIDNUMBERDIMINFOMDSYS.SDO_DIM_ARRAY伟度信息
阅读全文
posted @ 2013-08-18 14:56
de0319gh
阅读(723)
推荐(0)