select * from all_objectswhere object_type = 'TABLE'and object_name like 'GL_JE%'select * from po_requisition_headers_allwhere segment1 = '14304'and c...
分类:
其他好文 时间:
2014-07-01 21:15:56
阅读次数:
387
public static string GetObjectPropertyValue(T t, string propertyname){Typetype =typeof(T);PropertyInfoproperty = type.GetProperty(propertyname);if (pr...
分类:
其他好文 时间:
2014-07-01 20:30:21
阅读次数:
200
JS字符串本身并不没有提供常用的trim方法,我们可以通过修改String原形来添加此方法,我们就可以直接调用此方法了: String.prototype.trim = function(){return this.replace(/(^\s*)|(\s*$)/g, '')}String.proto...
分类:
Web程序 时间:
2014-07-01 20:25:50
阅读次数:
242
1.Flex的二义性模式语法分析器匹配输入时匹配尽可能多的字符串如果两个模式都可以匹配的话,匹配在程序中更早出的模式。针对这一点的理解,在语法分析文件当中,token的识别,应从特殊到一般的过程来编写(同时为了可以加入日志来打印当前拆分的token来debug这种情况),例如,实现语法分析过程中,遇...
分类:
其他好文 时间:
2014-07-01 20:17:12
阅读次数:
194
1.校验文件名的写法:Action name-validator.xml2.校验文件应该放在action 对应的包里面3.校验文件的写法。 true 4.常用的校验参数与类型typeurl url校验email 邮箱校验requiredstring 必填字符rege...
分类:
其他好文 时间:
2014-07-01 13:51:33
阅读次数:
173
/*EXEC master..xp_cmdshell 'BCP "select * from NBZA_Live_20140613.dbo.StoreList for xml Raw " queryout D:\XML\my_StoreList_20140630001.xml -c -U"sa" -...
分类:
其他好文 时间:
2014-07-01 12:23:38
阅读次数:
313
SRIO Packets:
The RapidIOdata stream consists of data fields pertaining to the logical layer, thetransport layer, and the physical layer.
? The logical layer consists of the header (defining the typ...
分类:
其他好文 时间:
2014-07-01 09:03:27
阅读次数:
294
题目给了你一串序列,然后每次 把最后一个数提到最前面来,直到原来的第一个数到了最后一个,每次操作都会产生一个新的序列,这个序列具有一个逆序数的值,问最小的你逆序数的值为多少
逆序数么 最好想到的是树状数组,敲了一把很快,注意把握把最后一个数提上来对逆序数的影响即可,
#include
#include
#include
#include
#include
#includ...
分类:
其他好文 时间:
2014-07-01 06:42:09
阅读次数:
186
jQuery.inArray(value, array)如果 value 在 array 中,则返回该 value 所在的位置。否则返回 -1。这个简单的函数实际上是模拟 Array.prototype.indexOf 函数的,对于旧的不支持 indexOf 的浏览器(例如IE6-IE8),就需要补...
分类:
Web程序 时间:
2014-07-01 00:40:12
阅读次数:
342