码迷,mamicode.com
首页 >  
搜索关键字:specified    ( 1420个结果
pydev出现Project interpreter not specified(eclipse+pydev)
出现上述错误的原因是因为没有为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解决方法
当某个数据库用户在数据库中插入、更新、删除一个表的数据,或者增加一个表的主键时或者表的索引时,常常会出现ora-00054:resource busy and acquire with nowait specified这样的错误。 主要是因为有事务正在执行(或者事务已经被锁),所有导致执行不成功。 1、用dba权限的用户查看数据库都有哪些锁 select t2.username,...
分类:其他好文   时间:2015-01-13 10:35:08    阅读次数:203
动态添加布局时,addView易引发的错误
动态添加布局时,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
运行Maven是报错:No goals have been specified for this build
pom.xml文件标签后面加上compile即可 compile
分类:其他好文   时间:2015-01-12 23:55:33    阅读次数:217
UVA1395 Slim Span(kruskal算法)
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图表切换、多次重新加载——dispose
前段时间同一个页面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
spring容器启动的加载过程(三)
第十步:public class XmlBeanDefinitionReader extends AbstractBeanDefinitionReader { /** * Load bean definitions from the specified XML file. * ...
分类:编程语言   时间:2015-01-12 14:17:05    阅读次数:390
mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法
权限问题,授权 给 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
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
MySQL中index和key的关系
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!