码迷,mamicode.com
首页 >  
搜索关键字:connection timed out    ( 41605个结果
.NET数据库连接中的对象
在学习VB.NET视频时,其中有几个单元讲到了.NET的数据库设计与连接。对于数据库的连接,其实我们并不陌生,原来在做红皮书和机房收费系统的时候,我们都有接触过,可是,在我的印象中,这些关于数据库连接的知识很是模糊。对于数据库连接对象更是一知半解。  回过头来,翻了一遍红皮书中的几个实例,里面讲到了利用ADO控件来连接数据库,它涉及到的数据库连接对象有7个(connection,com...
分类:数据库   时间:2014-05-18 15:45:15    阅读次数:438
POJ 2387 Til the Cows Come Home dijkstra算法 用邻接表和邻接矩阵
题目如下: Til the Cows Come Home Time Limit: 1000MS        Memory Limit: 65536K Total Submissions: 27726        Accepted: 9353 Description Bessie is out in the field and wants to get back to the ba...
分类:其他好文   时间:2014-05-18 13:50:11    阅读次数:263
jenkins在使用maven部署到nginx+tomcat服务器时出现504错误
环境:jenkins+maven+nginx+tomcat 在执行jenkins job发布项目到远程服务器,服务器使用nginx+tomcat。默认使用80端口,通过nginx转发请求。在执行tomcat:redeploy时,出现下面的错误: [ERROR] Failed toexecute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:red...
分类:其他好文   时间:2014-05-18 13:38:52    阅读次数:510
LeetCode: Reverse Nodes in k-Group [024]
【题目】 Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is. You may not alter the values in the nodes, only n...
分类:其他好文   时间:2014-05-18 10:22:34    阅读次数:367
org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection
org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is o...
分类:数据库   时间:2014-05-18 06:19:21    阅读次数:547
ORA 12505 Listener does not currently know of SID given in connection descriptor
oracle数据库正常启动后,在本地可以正常访问,但是远程使用sqldevelop却不能访问,提示ORA 12505 Listener does not currently know of SID given in connection descriptor,解决这个问题之前,先看一下oracle服务器正常启动流程 1.启动监听  命令:lsnrctl start 2.登陆sqlplus...
分类:其他好文   时间:2014-05-18 05:04:30    阅读次数:243
Linux环境编程之信号(一):信号基本概述
引言 假如在后台运行一个可执行程序./a.out,如果想终止该程序,通常会按下Ctrl-C,从而产生一个中断,其实这个过程的实现就是通过信号完成的。信号是软件中断,它提供了一种处理异步事件的方法。 (一) 每个信号都有一个名字,这些名字都以三个字符SIG开头。例如SIGALARM是闹钟信号,当由alarm函数设置的计时器超时后产生此信号。Linux除支持31种不同信号外,还支持应用程序额外定...
分类:系统相关   时间:2014-05-18 04:50:12    阅读次数:347
一个坑爹的BUG,不仔细看还真看不出来问题
Queue queue = new LinkedList (); for(int i = 0; i<20; i++) { queue.add("坑爹" + i); } for(int j =0; j<queue.size(); j++) { String str = queue.poll(); System.out.println(j); }嘿嘿 输出的是从1~10;虽然没什么技术含量但是我...
分类:其他好文   时间:2014-05-18 04:20:23    阅读次数:282
阿拉伯数字转换成中文大写
package Demo;public class Money{ public static void main(String args[]) { Money mon = new Money(); System.out.println(mon.change("124")); } /...
分类:其他好文   时间:2014-05-17 23:22:10    阅读次数:412
java 常用工具
System:类中的属性方法都是静态的。无法实例化err:"标准"错误输出流in:"标准"输入流out:"标准"输出流常见方法:long currentTimeMillis();获取当前时间的毫秒值Properties getProperties(); 获取系统属性Properties集合中存储的都...
分类:编程语言   时间:2014-05-17 22:30:49    阅读次数:392
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!