Executed as user: WTC\Ebw.Admin. Transaction (Process ID 95) was deadlocked on lock resources with another process and has been chosen as the deadlock...
分类:
其他好文 时间:
2014-09-02 12:19:24
阅读次数:
200
This can be easily solved by allowing MARS in your connection string. AddMultipleActiveResultSets=trueto the provider part of your connection string (...
分类:
其他好文 时间:
2014-09-02 12:16:14
阅读次数:
178
1.使用string必须添加头文件#include"string"using namespace std;2.使用CString必须添加头文件(在非MFC工程中)#include"afx.h"注意:当出现#error : Building MFC application with /MD[d] (C...
分类:
其他好文 时间:
2014-09-02 10:19:14
阅读次数:
204
http://blog.itpub.net/26687597/viewspace-1207571/基于Oracle EBS R12,开发了一个Webservice用于返回某项主数据,当请求的数据量非常大的时候(大于6000行的数据量),Oracle应用服务器总是给返回一个500Internal Se...
分类:
Web程序 时间:
2014-09-02 10:12:44
阅读次数:
301
# yum clean all
# rpm --rebuilddb
# yum update...
分类:
其他好文 时间:
2014-09-02 09:06:04
阅读次数:
199
Failed to create the requested registry key Key: Installer Error: 1021解决方法:删除注册表--HKEY_LOCAL_MACHINE\SOFTWARE\VMware。Inc. 再重新安装即可。
分类:
其他好文 时间:
2014-09-02 00:11:10
阅读次数:
244
1.捕获异常 try { //lots of code... } catch(error)( //user error... //catch 代码块不是必需的 )finally{ //wrap up... //finally代码块不是必需的,但是finally代码块不论有没有异常都一定会执行的; }...
分类:
其他好文 时间:
2014-09-01 19:24:23
阅读次数:
197
1.对话窗口 (1)警告对话框 alert('error'); (2)确认对话框 confirm('please cofirm this message');//返回true或false (3)提示对话框 var v= prompt('what say you ?',123);//第一个参数提示信息...
分类:
其他好文 时间:
2014-09-01 19:13:43
阅读次数:
245
service类上要有标注,否则会报下面的错。缺少唯一的一个serivce bean。
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
...
分类:
其他好文 时间:
2014-09-01 17:47:33
阅读次数:
246
index.php:$action(); } //清除对象 unset($obj);} else { //未登陆或请求错误 echo 0;}$DB->CloseConnection();config.php:<?phperror_reporting(E_ERROR);s...
分类:
Web程序 时间:
2014-09-01 17:37:23
阅读次数:
177