摘要: 方式一:简易连接,不用进行网络配置,其实就是tnsname.ora文件,但只支持oracle10G以上。命令:sqlplus 用户名/密码@ip地址[:端口]/service_name [as sysdba]示例:sqlplus sys/pwd@ip:1521/test as sysdba 备注:使用默认1521端口时可省略输入方式二:进行网络配置 oracle9i和以前的版本2.1图形化操作:Net Configuration Assistant--> 本地Net服务名配置-->添加->服务名->协议(选tcp)->主机名称->端口->完成。2.2文 阅读全文
posted @ 2013-11-01 17:03 七月逆流 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: f I use any svn command communicating with the remote server I get the following error:Error validating server certificate for 'https://...': - The certificate is not issued by a trusted authority. Use the fingerprint to validate the certificate manually!Certificate information: - Hostname: 阅读全文
posted @ 2013-11-01 13:59 七月逆流 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 在Windows里,先打开Log面板,根据想要回退的内容,然后选择revert to this revision或者revert changes from this revision。记住如果想将回退之后的内容提交到svn,还要commit. 关于这2个操作的区别,在:http://www.iusesvn.com/bbs/thread-1825-1-1.html有详细的解释。 下面引用过来: 譬如有个文件,有十个版本,假定版本号是1,2,3,4,5,6,7,8,9,10。 Revert to this revision: 如果在版本6这里点击“Revert to this re... 阅读全文
posted @ 2013-11-01 00:36 七月逆流 阅读(489) 评论(0) 推荐(0) 编辑
摘要: our problem is that the hibernate Session lives only for one request. It opens in the start of the request and closes at the end. You guessed the answer: Hibernate session is closed before both requests are finished.Exactly what is happening? Your entity objects live during both requests. How? The a 阅读全文
posted @ 2013-11-01 00:24 七月逆流 阅读(535) 评论(0) 推荐(0) 编辑