上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 40 下一页
  2014年2月14日
摘要: 转自http://blog.csdn.net/ly5156/article/details/6647563遭遇Error in invoking target 'agent nmhs' of makefile '/home/oracle_11/app/oracle/product/11.2.0/db_1/sysman/lib/ins_emagent.mk'.解决过程vi $ORACLE_HOME/sysman/lib/ins_emagent.mkSearch for the line$(MK_EMAGENT_NMECTL)Change it to:$(MK_EM 阅读全文
posted @ 2014-02-14 23:16 c3tc3tc3t 阅读(558) 评论(0) 推荐(0)
摘要: 执行.runInstall时,出现界面乱码exportLANG=en_USexportLC_ALL=en_US终端里 执行这两句。用英文界面安装再执行 .runInstall 阅读全文
posted @ 2014-02-14 22:20 c3tc3tc3t 阅读(283) 评论(0) 推荐(0)
  2014年2月12日
摘要: 阅读全文
posted @ 2014-02-12 11:00 c3tc3tc3t 阅读(364) 评论(4) 推荐(0)
  2014年2月10日
摘要: "============================================================="============================================================="" Vim基本配置""==============... 阅读全文
posted @ 2014-02-10 20:11 c3tc3tc3t 阅读(730) 评论(0) 推荐(0)
摘要: oh-my-zsh 是一个广受欢迎的 zsh 配置库,在它的 github 主页https://github.com/robbyrussell/oh-my-zsh/ 阅读全文
posted @ 2014-02-10 09:38 c3tc3tc3t 阅读(216) 评论(0) 推荐(0)
  2014年2月9日
摘要: 转:http://www.cnblogs.com/2gua/Python的静态方法和类成员方法都可以被类或实例访问,两者概念不容易理清,但还是有区别的:1)静态方法无需传入self参数,类成员方法需传入代表本类的cls参数;2)从第1条,静态方法是无法访问实例变量的,而类成员方法也同样无法访问实例变量,但可以访问类变量;3)静态方法有点像函数工具库的作用,而类成员方法则更接近类似Java面向对象概念中的静态方法。实现静态方法和类方法的两种方式一、在Python 2.3及之前,用staticmethod和classmethod类型对象包装实现例子如下(注意print里的说明):class MyC 阅读全文
posted @ 2014-02-09 15:18 c3tc3tc3t 阅读(978) 评论(0) 推荐(0)
  2014年2月7日
摘要: 今天报了这个异常,这是页面报的org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.控制台报18:52:35,859 ERROR SqlExceptionHelper:147 - Cannot delete or update a parent row: a foreign key constraint fails (`zl_cms`.`t_chann 阅读全文
posted @ 2014-02-07 18:59 c3tc3tc3t 阅读(32603) 评论(0) 推荐(0)
  2014年2月5日
摘要: 今天报了这个错误 原因是。当使用sql查询语句,使用了join查表。但是这个orders没指定是哪张表的字段 ,发生在自关联情况 阅读全文
posted @ 2014-02-05 13:56 c3tc3tc3t 阅读(681) 评论(0) 推荐(0)
  2014年2月2日
摘要: 1 opensuse13.1 安装chrome时 先用rpm -ivh --test **.rpm 测试安装 安装上缺少的文件2 但是安装测试通过 却不能启动 原因 缺少一个文件 libudev.so.0 将这个安装上sudo zypper in libudev.so.03 就可以启动了 阅读全文
posted @ 2014-02-02 20:49 c3tc3tc3t 阅读(1502) 评论(0) 推荐(0)
  2014年2月1日
摘要: 转自 http://www.douban.com/note/13413855/Python中函数参数的传递是通过“赋值”来传递的。但这条规则只回答了函数参数传递的“战略问题”,并没有回答“战术问题”,也就说没有回答怎么赋值的问题。函数参数的使用可以分为两个方面,一是函数参数如何定义,二是函数在调用时的参数如何解析的。而后者又是由前者决定的。函数参数的定义有四种形式: 1. F(arg1,arg2,...) 2. F(arg2=,arg3=...) 3. F(*arg1) 4. F(**arg1)第1 种方式是最“传统”的方式:一个函数可以定义不限个数参数,参数(形式参数)放在跟在函数名后面的小 阅读全文
posted @ 2014-02-01 21:56 c3tc3tc3t 阅读(4077) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 40 下一页