异常处理
一、预定义异常:
Dup_val_on_index:试图向唯一索引列插入重复值,相当于建立了一个唯一索引 然后再向这个索引的列中插入一条重复的数据就会异常。
Invalid_cursors:试图进行非法的游标操作
Invalid_number : 试图将字符串转换为数字
no_data_found : select into 语句没有返回任何记录
Too_many_rows ...
分类:
其他好文 时间:
2014-08-19 09:27:03
阅读次数:
210
一、检查系统版本是否手工升级[root@station253~]#uname-rlinux的内核版本号
2.6.32-358.el6.x86_64
[root@station253~]#cat/proc/version
Linuxversion2.6.32-358.el6.x86_64
[root@station253~]#cat/etc/issue系统安装时默认的发行版本
CentOSrelease6.4(Final)
[root@statio..
分类:
其他好文 时间:
2014-08-17 17:10:18
阅读次数:
404
#include void function(char *str) { char buffer[16]; strcpy(buffer,str);
} int main() { char large_string[256]; int i; for( i = 0; i void function(cha...
分类:
其他好文 时间:
2014-08-16 22:28:11
阅读次数:
170
Oil DepositsThe GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangula...
分类:
其他好文 时间:
2014-08-15 12:25:18
阅读次数:
306
在使用ab做压力测试的时候发现当并发设置为1000以上的时候就出现[root@DB~]#ab-n10000-c1500http://192.168.100.208/
ThisisApacheBench,Version2.3<$Revision:655654$>
Copyright1996AdamTwiss,ZeusTechnologyLtd,http://www.zeustech.net/
LicensedtoTheApacheSoftware..
分类:
其他好文 时间:
2014-08-14 20:58:29
阅读次数:
227
1、基本概念屏幕大小(screen size)– 屏幕的实际大小,用屏幕对角线长度来衡量(比如3.4寸,3.8寸)。android把屏幕分为以下4种:small,normal,large,extra large。怎么判断?屏幕密度(Screen Density) -一块实际的屏幕区域有多少个像素,一...
分类:
移动开发 时间:
2014-08-14 20:22:39
阅读次数:
303
题目地址:HDU 1086
就这么一道仅仅判断线段相交的题目写了2k多B的代码。。是不是有点浪费。。。但是我觉得似乎哪里也优化不了了。。。。
判断线段相交就是利用的叉积。假如现在两条线段分别是L1和L2,先求L1和L2两个端点与L1的某个端点的向量的叉积,如果这两个的叉积的乘积小于0的话,说明L1在是在L2两个端点之间的,但此时并不保证一定相交。此时需要用同样的方法去判断L2是否在L1的两个端...
分类:
其他好文 时间:
2014-08-13 22:30:37
阅读次数:
307
No mapping found for HTTP request with URI [/account/login.do] in DispatcherServlet with name 'spring'...
分类:
移动开发 时间:
2014-08-13 18:51:57
阅读次数:
234
今天实施同事报现场有一个节点无法访问,把现场的weblogic日志拿回来,显示如下:
<Unable to create a server socket for...
分类:
编程语言 时间:
2014-08-13 18:45:57
阅读次数:
259
横竖屏切换,不重新加载
Up to API 13 there was a new value to the configChanges attribute, screenSize
So if you're using large screens make sure to add screenSize in your configChanges attribute:
android:confi...
分类:
移动开发 时间:
2014-08-13 15:02:36
阅读次数:
251