08 2009 档案

摘要:char *const p="hello";char ch='s';*p=ch;这段代码在编译时没错调试时出错。解决方法:char str[]="hello";char *const p=&str[0];char ch='s';*p=ch; 阅读全文
posted @ 2009-08-15 14:57 children 阅读(145) 评论(0) 推荐(0)
摘要:配置 iSQL*Plus -------------------------------------------------------------------------------- iSQL*Plus 环境变量 这些环境变量指定 iSQL*Plus Application Server 所用... 阅读全文
posted @ 2009-08-06 16:25 children 阅读(3232) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->char*m_sErrorMessage="";//数据库操作类的成员变量t... 阅读全文
posted @ 2009-08-06 14:26 children 阅读(2643) 评论(0) 推荐(0)
摘要:如果通过浏览器方式访问Oracle的em,isqlplus等,需要知道各个服务的端口,此时可以查看: $ORACLE_HOME\product\10.1.0\Db_1\install目录下的portlist.ini文件或readme.txt文件 修改服务端口号: $ORACLE_HOME\produ... 阅读全文
posted @ 2009-08-02 13:24 children 阅读(1447) 评论(0) 推荐(0)