web_reg_save_param,将Ord参数值设定为ALL,则关联函数将自动把符合条件的关联值保存到参数数组里。在本例中,假设关联值返回三条记录,则LR分别将值保存到sor_1,sor_2,sor_3中,同时,LR还将自动创建一个sor_count变量来保存总的记录数,在这里sor_count...
分类:
其他好文 时间:
2014-09-18 16:26:44
阅读次数:
204
There are two method to call .net DLL in SQLSERVER.The first one is to use the sql clr but it has a lot of limit.The second method is to use SSIS pack...
分类:
数据库 时间:
2014-09-18 14:44:13
阅读次数:
246
In recent years Linux distributions started treating security more seriously. Out of many security features two are directly affecting C programmers:-...
分类:
其他好文 时间:
2014-09-18 14:31:34
阅读次数:
589
[leetcode]Divide Two Integers...
分类:
其他好文 时间:
2014-09-18 11:38:13
阅读次数:
189
Binary String Matching
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述
Given two strings A and B, whose alphabet consist only ‘0’ and ‘1’. Your task is only to tell how many times does A appear as ...
分类:
其他好文 时间:
2014-09-18 11:34:53
阅读次数:
178
Sort a linked list in O(n log n) time using constant space complexity.记得Insert Sort List, 那个复杂度是O(N^2)的,这里要求O(nlogn),所以想到merge sort, 需要用到Merge Two Sor...
分类:
其他好文 时间:
2014-09-18 01:57:43
阅读次数:
199
求2个数组的中位数方法很多但是时间复杂度各异1利用数组copy方法先融合两个数组,然后排序,找出中位数import java.lang.reflect.Array;import java.util.Arrays;import java.util.Collection;import java.util...
分类:
编程语言 时间:
2014-09-18 00:41:02
阅读次数:
222
今天在用Hibernate对对象进行修改操作的时候报了这个错。之前一直没什么错误,但是今天修改了一下表结构,增加了一个OneToMany的映射。所以在我获取对象,重新set一个变量之后就报了这个错误了。Illegal attempt to associate a collection with tw...
分类:
系统相关 时间:
2014-09-17 20:04:32
阅读次数:
324
//this is a program witch played by two people
//二人游戏,若第一个抛骰子,抛两次的和为7或11则第一人直接胜利,第二人直接失败
//若第一个人抛骰子,抛两次的和为2,3或12,则第一个人直接失败,第二人胜利
//若第一个人抛筛子,抛两次的和以上均不是,则由第二个人抛,直到有一方胜利
#include
#include
#include //...
分类:
编程语言 时间:
2014-09-17 16:56:42
阅读次数:
260
AngularJS 是Google 推出的一套前端JS开发的 MV* (Model-View-Whatever)框架,它引入了一些编译器的概念,比如编译、链接,具有强大的双向数据绑定(Two-way binding)和前端模板功能(directive),使得我们可以轻易实现高服用、高可扩展性的脚本,...
分类:
其他好文 时间:
2014-09-16 23:26:21
阅读次数:
303