USE [NLISSST]GO/****** Object: StoredProcedure
[SST].[sp_ArbitrationUpdateByID] Script Date: 05/08/2014 10:29:59 ******/SET
ANSI_NULLS ONGOSET QUO...
分类:
其他好文 时间:
2014-05-08 18:50:01
阅读次数:
275
USE [NLISSST]GO/****** Object: StoredProcedure
[SST].[sp_ArbitrationDeleteByID] Script Date: 05/08/2014 10:26:49 ******/SET
ANSI_NULLS ONGOSET QUO...
分类:
其他好文 时间:
2014-05-08 18:46:50
阅读次数:
226
public boolean checkMatchFNOrFI(String[] strArray,String value){
boolean flag = false;
for(String s : strArray){
if(!s.equals("")){
String temp = s.replaceAll("\\?", "\\\\w").replaceAll("\\...
分类:
数据库 时间:
2014-05-08 10:46:16
阅读次数:
380
Java String 字符串的HashCode值
public int hashCode()
Returns a hash code for this string. The hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int ari...
分类:
编程语言 时间:
2014-05-08 10:44:53
阅读次数:
533
1.the use of functions in table fields is a key
ingredient for some advanceduses of Lua, such as modules and object-oriented
programming.
分类:
其他好文 时间:
2014-05-08 10:24:51
阅读次数:
302
2.3.3计算阶乘实例2 的阶乘结果是: {{factorial.result}}
同样是这个例子:result的改变,本质上是由于number的改变,而不是input的value值改变,number的改变有可能是input的va...
分类:
其他好文 时间:
2014-05-08 10:20:00
阅读次数:
371
热身运动:1. 启动MongoDB shell => mongo.exe or
./mongo(先确保有一个mongod的实例):2. 切换到一个用于练手的namespace => use
xxxxxxx:增:db.[table].insert({[field]: [value]})查:db.[ta...
分类:
数据库 时间:
2014-05-08 07:59:42
阅读次数:
435
本文介绍一种设计模式 Role Object(角色对象)模式。
分类:
其他好文 时间:
2014-05-08 07:20:47
阅读次数:
389
每次操作select都要查资料,干脆总结一下。为select设置placeholder为Select添加事件,当选择其中一项时触发$("#select_id").change(function(){
//code...});jQuery获取Select选择的Text和Value:var che...
分类:
Web程序 时间:
2014-05-08 05:48:25
阅读次数:
509
抠细节的题目,很多次过,特别是 Integer.MIN_VALUE 与
Integer.MAX_VALUE的绝对值并不一样大 1 public class Solution { 2 public int atoi(String
str) { 3 int result=0; 4...
分类:
其他好文 时间:
2014-05-08 05:44:17
阅读次数:
343