用真机调试程序的时候,eclipse的console总是出现如下的错误“Adb
connection Error:远程主机强迫关闭了一个现有的连接”问题出现的原因:这是ddms调用adb引发的. 经过一番搜索,
发现这是windows环境下, adb的一个限制, 也可以说是bug. 当手机上同时运行...
分类:
移动开发 时间:
2014-05-24 04:37:38
阅读次数:
306
估计是因为Win7和ADS不兼容的原因,第一次安装ADS后一直停在100%的位置,等了好久也没有反应。于是我点了Cancel。准备从新安装,于是就发生了下面的问题:一直在Modify
Repair Remove界面循环: 无论我是点什么都没有用。 一开始想着能不能从360卸载,找了半天发现360软件...
分类:
其他好文 时间:
2014-05-23 08:51:38
阅读次数:
360
#ifndef __APP_WEBSOCKET_CONNECTION_H__
#define __APP_WEBSOCKET_CONNECTION_H__
#include
#include "tcp_connection.hpp"
class websocket_connection : public tcp_connection
{
public:
websocket_connecti...
分类:
编程语言 时间:
2014-05-22 11:37:44
阅读次数:
339
数据源
从接触DBMS开始就在用数据源(DataSource),它其中很重要的一个作用就是可以管理Connection,管理的方式也就是经常听到的ConnectionPool。它的管理其实就是对DriverManager获取Connection进行了包装。
下面就首先看看用DataSource来取代DriverManager来获取Connection的好处:
一般DataSour...
分类:
其他好文 时间:
2014-05-20 17:03:34
阅读次数:
264
这个问题引发的原因最初的报错是:[2013-10-14 10:01:58 - XXX] The
connection to adb is down, and a severe error has occured.[2013-10-14 10:01:58 -
XXX] You must restart...
分类:
移动开发 时间:
2014-05-19 18:30:21
阅读次数:
336
在学习VB.NET视频时,其中有几个单元讲到了.NET的数据库设计与连接。对于数据库的连接,其实我们并不陌生,原来在做红皮书和机房收费系统的时候,我们都有接触过,可是,在我的印象中,这些关于数据库连接的知识很是模糊。对于数据库连接对象更是一知半解。
回过头来,翻了一遍红皮书中的几个实例,里面讲到了利用ADO控件来连接数据库,它涉及到的数据库连接对象有7个(connection,com...
分类:
数据库 时间:
2014-05-18 15:45:15
阅读次数:
438
【题目】
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:
其他好文 时间:
2014-05-18 08:37:57
阅读次数:
370
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
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
//rbtree.h /* Red Black Trees (C) 1999 Andrea
Arcangeli This program is free software; you can redistribute it and/or modify
it under the terms of the...
分类:
系统相关 时间:
2014-05-18 01:05:37
阅读次数:
489