实例1:updateUSE [数据库名称]GO/****** Object: Trigger
[dbo].[触发器名称] Script Date: 05/08/2014 12:40:25 ******/SET ANSI_NULLS ONGOSET
QUOTED_IDENTIFIER ONGO...
分类:
数据库 时间:
2014-05-09 10:50:54
阅读次数:
481
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
Message相关有3条指令:SendMessage
("函数名",参数,SendMessageOptions) //GameObject自身的ScriptBroadcastMessage
("函数名",参数,SendMessageOptions) //自身和子Object的ScriptSendMe...
分类:
其他好文 时间:
2014-05-08 17:33:35
阅读次数:
302
sharepoint学习笔记汇总
http://blog.csdn.net/qq873113580/article/details/20390149
protected void Button1_Click(object sender, EventArgs e)
{
using (SPSite site = new SPSite("http:...
分类:
其他好文 时间:
2014-05-08 17:13:44
阅读次数:
254
题目链接:点击打开链接
题意:
给定一个字符串str 求字符串str的
循环节个数为 1-len 个的
最长子串长度
思路:套用kmp的性质
#include
#include
#include
using namespace std;
#define n 1300
void getnext(char str[n],int next[n]){
int m=strlen(str);...
分类:
其他好文 时间:
2014-05-08 17:12:53
阅读次数:
330
private void treeView1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
if(e.Button==MouseButtons.Right)
{
TreeNode tn=treeView1.GetNodeAt(e.X,e.Y);
if(tn!=null)treeView1.SelectedNode...
分类:
其他好文 时间:
2014-05-08 16:24:44
阅读次数:
308
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
本文介绍一种设计模式 Role Object(角色对象)模式。
分类:
其他好文 时间:
2014-05-08 07:20:47
阅读次数:
389