出现上述错误的原因是因为没有为Pydev指定python.exe位置修改步骤依次是 1、从Eclipse的菜单 Window --> Preferences 打开首选项配置; 2、首选项配置页面,找到左边的PyDev项展开,点击Interpreter - Python 项(Interprete...
分类:
系统相关 时间:
2015-01-15 01:46:50
阅读次数:
182
当某个数据库用户在数据库中插入、更新、删除一个表的数据,或者增加一个表的主键时或者表的索引时,常常会出现ora-00054:resource busy and acquire with nowait specified这样的错误。
主要是因为有事务正在执行(或者事务已经被锁),所有导致执行不成功。
1、用dba权限的用户查看数据库都有哪些锁
select t2.username,...
分类:
其他好文 时间:
2015-01-13 10:35:08
阅读次数:
203
动态添加布局时,addView容引发的错误:java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first。原因是:实例化的一个布局(start),然后被我添加到ViewGroup两次。然而一个View只能有一个父控件。当第二次添加的时候就会视图去要改变该控件的父控件。但是android不允许在运行时,已有父控件的...
分类:
其他好文 时间:
2015-01-13 09:00:53
阅读次数:
176
pom.xml文件标签后面加上compile即可 compile
分类:
其他好文 时间:
2015-01-12 23:55:33
阅读次数:
217
Slim Span
[PDF Link]
Given an undirected weighted graph G , you should find one of spanning trees specified as follows.
The graph G is an ordered pair (V, E) ,
where V is a set of vertices {v1,...
分类:
编程语言 时间:
2015-01-12 22:37:21
阅读次数:
391
前段时间同一个页面fusioncharts图表切换一直没出问题,如下图:
最近运行系统突然报错:
Uncaught ParameterException: #06091847 chartobject-1 Warning >> A FusionChart oject with the specified id "theTaskRateChart" already exists. Rena...
分类:
其他好文 时间:
2015-01-12 21:05:39
阅读次数:
448
第十步:public class XmlBeanDefinitionReader extends AbstractBeanDefinitionReader { /** * Load bean definitions from the specified XML file. * ...
分类:
编程语言 时间:
2015-01-12 14:17:05
阅读次数:
390
权限问题,授权 给 root 所有sql 权限mysql> grant all privileges on *.* to root@"%" identified by ".";Query OK, 0 rows affected (0.00 sec)mysql> flush privileges;Qu...
分类:
数据库 时间:
2015-01-09 10:35:58
阅读次数:
155
EXTRACT extracts and returns the value of a specified datetime field from a datetime or interval expression. EXTRACT( { YEAR | MONTH |...
分类:
其他好文 时间:
2015-01-09 00:10:01
阅读次数:
178
KEY is normally a synonym for INDEX. The key attribute PRIMARY KEY can also be specified as just KEY when given in a column definition. This was imple...
分类:
数据库 时间:
2015-01-08 17:23:42
阅读次数:
192