码迷,mamicode.com
首页 >  
搜索关键字:error while commiting the transaction    ( 59852个结果
pdfcrop不能使用
最近,用到了pdfcrop,用来去除pdf中空白的边。但是使用pdfcrop --margins 0 *.pdf 后,给出了错误:Error: pdfcrop cannot call ghostscript 但是我已经安装了CTEX,里面已经包含Ghostscript,所以就不知道什么错误。在网上针...
分类:其他好文   时间:2014-06-06 16:49:28    阅读次数:179
loadrunner -56992
设置Run-time Settings ,network speed ,use bandwidth为 512;回放脚本没有报错,5个并发运行场景报如下错误:vuser_init.c(12): Error: Socket descriptor not found.Hint: the problem m...
分类:其他好文   时间:2014-06-06 14:49:03    阅读次数:404
C 语言静态链表实现
C 语言静态链表实现可运行源代码staticlink.h#include #include #define OK 1#define TRUE 1#define FALSE 0#define ERROR 0#define MAX_SIZE 100 typedef int Status;typed...
分类:其他好文   时间:2014-06-06 14:14:15    阅读次数:220
hdu 1.3.4 shǎ崽 OrOrOrOrz
简单的排序,注意输出即可#include #include using namespace std;int main(){ int a[10001]; int n,i; //int t = 0; while(cin>>n) { //if(t)cout>a[...
分类:其他好文   时间:2014-06-06 13:53:51    阅读次数:209
ATL错误处理
_com_issue_error(HRESULT x)throw a _com_error object 1 try 2 { 3 HRESULT hr; 4 ... 5 if (FAILED(hr)) 6 _com_issue_error(hr); ...
分类:其他好文   时间:2014-06-06 11:44:29    阅读次数:199
Swift中文教程(三)--流程控制
原文:Swift中文教程(三)--流程控制 Swift用if和switch编写条件控制语句,用for-in,for,while和do-while编写循环。条件控制语句和循环语句中,小括号是可选的,但花括号包住这个循环体是必须的: 1 let individualScores = [75, 43, 1...
分类:其他好文   时间:2014-06-06 11:39:51    阅读次数:234
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 解决方法
ERROR:ORA-28002: the password will expire within 7 days错误是提示password快过期了,有两个办法解决问题。一. 改动已经报错用户的password已经被报告了password快要过期的账户必须再改一次password(须要DBA权限)以sy...
分类:数据库   时间:2014-06-06 10:34:50    阅读次数:289
Swift控制流
概览 Swift 的条件语句包含if和switch,循环语句包含for-in、for、while和do-while,循环/判断条件不需要括号,但循环/判断体(body)必需括号:1 let individualScores = [75, 43, 103, 87, 12]2 var teamScor....
分类:其他好文   时间:2014-06-06 09:15:21    阅读次数:192
unrecognized selector sent to instance
[iOS] Error Fixed : [__NSArrayI addObject:]: unrecognized selector sent to instance当我创建了一个NSMutableArray 对象的时候@property(nonatomic,copy)NSMutableArray*...
分类:其他好文   时间:2014-06-06 08:18:29    阅读次数:291
JS性能优化
下面是一些关于客户端JS性能的一些优化的小技巧:1.[顶]关于JS的循环,循环是一种常用的流程控制。JS提供了三种循环:for(;;)、while()、for(in)。在这三种循环中 for(in)的效率最差,因为它需要查询Hash键,因此应尽量少用for(in)循环,for(;;)、while()...
分类:Web程序   时间:2014-06-06 06:55:57    阅读次数:305
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!