1、ORA-00942: table or view does not exist指的你要操作的表尚未存在,需要先create出来先。2、ORA-00922: missing or invalid option指的是有语法错误。遗漏了分号什么的3、Warning: Procedure created...
分类:
数据库 时间:
2014-08-20 01:13:16
阅读次数:
539
原文:一个简单的带序列号输入的安装包首先建立一个Installscript Project
在Installation Designer中,找到Behavior and Logic -> Install Script, 在Setup.rul中找到Before Move Data -> OnFirst...
分类:
其他好文 时间:
2014-08-19 18:53:05
阅读次数:
185
An array A[1...n] contains all the integers from 0 to n except for one number which is missing.In this problem, we cannot access an entire integer in ...
分类:
其他好文 时间:
2014-08-19 18:49:45
阅读次数:
251
MySQL 触发器简单实例~~语法~~CREATE TRIGGER --触发器必须有名字,最多64个字符,可能后面会附有分隔符.它和MySQL中其他对象的命名方式基本相象.{ BEFORE | AFTER } --触发器有执行的时间设置:可以设置为事件发生前或后。{ INSERT | UPDA...
分类:
数据库 时间:
2014-08-19 18:11:45
阅读次数:
250
1.进入jdk/lib目录,执行: mvn install:install-file -DgroupId=jdk.tools -DartifactId=jdk.tools -Dpackaging=jar -Dversion=1.7 -Dfile=tools.jar -DgeneratePom=true 2.加入依赖 <dependency> ? ? <group...
分类:
系统相关 时间:
2014-08-19 16:57:45
阅读次数:
229
在上一篇的第二部分中,我们有一句代码待解释的:
// Draw the Scene
void CCDirector::drawScene(void)
{
……
//tick before glClear: issue #533
if (! m_bPaused) //暂停
{
m_pScheduler->update(m_fDeltaTime); //待会会解释这里的...
分类:
其他好文 时间:
2014-08-19 16:35:24
阅读次数:
210
Oracle中获取刚刚插入记录的主键值: <insert?id="insertSelective"?parameterType="com.jxxx.p2pp.model.UUserInfo">
????<selectKey?resultType="java.math.BigDecimal"?order="BEFORE"?keyProperty="...
分类:
其他好文 时间:
2014-08-18 22:13:03
阅读次数:
234
伪类: :first-child :link :hover :active :visited :focus :lang伪元素: :first-line :first-letter :before :after注意:CSS3中伪元素前是两个冒号,如 ::first-lin...
分类:
其他好文 时间:
2014-08-18 09:14:33
阅读次数:
240
第14章 使用选择器在页面中插入内容使用选择器来插入文字图片上一章提到过使用before和after伪类为某个元素之前或之后插入内容 h2:after{content:'12345'},也可以指定个别元素不进行插入h2.class1:after{content:none},也可以插入图片h2:aft...
分类:
Web程序 时间:
2014-08-18 01:26:43
阅读次数:
311
Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi...
分类:
其他好文 时间:
2014-08-16 16:21:10
阅读次数:
229