使用Navicat 导入MySQL数据库的时候,出现了一个严重的错误,Lost connection to MySQL server during query,字面意思就是在查询过程中丢失连接到MySQL服务器. [Msg] Decompressing... [Msg] Table Created: wp_wiki_copy [Msg] Importing Data... [Msg] 2013 - Lost connection to MySQL server during query [Msg…
我的maven 项目有一个红色感叹号, 而且Problems 存在 errors : Description Resource Path Location Type Archive for required library: 'D:/mvn/repos/junit/junit/3.8.1/junit-3.8.1.jar' in project 'xxx' cannot be read or is not a valid ZIP file ktb-mgr Maven Webapp Build pa…
开始用XCODE学习Apple相关开发的东东,写些demo熟悉Object C,一直还没看见什么问题,昨晚在家把一些demo上传到代码服务器,今天在另外一台机器上下载下来编译,出现了问题: Precomplile */*-Prefix.pch blablabla...... clang: error: no such file or directory: '.../*-Prefix.pch' clang: error: no input files Command /Applications/X…
ucosii原来的禁止中断以及恢复中断的代码是最简的,但是使用之前,必须声明一个固定名为 OS_CPU_SR cpu_sr 的变量,吊在那里感觉很怪. ;************************************************* ; Note(s) : These functions are used in general like this: ; void Task (void *p_arg) ; { ; #if OS_CRITICAL_METHOD == 3 /*…
下面一个存储过程是创建一个job,在5秒后更新一个表: create or replace PROCEDURE P_TEST AS jobno number; BEGIN dbms_job.submit( jobno, 'update t_zhan set z_name=''aaa'' where z_id=80', sysdate),-- 5秒 null ); commit; END P_TEST; 执行此存储过程所报的错误: Connecting to the database defect…