1、基本操作db.AddUser(username,password)
添加用户db.auth(usrename,password) 设置数据库连接验证db.cloneDataBase(fromhost)
从目标服务器克隆一个数据库db.commandHelp(name) returns the h...
分类:
数据库 时间:
2014-07-22 23:11:54
阅读次数:
449
/*按照符号分割字符串*/create function [dbo].[m_split](@c
varchar(2000),@split varchar(2)) returns @t table(col varchar(200)) as begin
wh...
分类:
数据库 时间:
2014-05-09 12:18:45
阅读次数:
376
1 $() vs $$("someSelector") returns a array.
This is defiend in jQuery.prototype.$.methodName is a method defined in
jQuery...2methods below will stop...
分类:
Web程序 时间:
2014-05-09 11:33:38
阅读次数:
371
表值函数就是返回table 的函数使用它可以方便的进行查询的处理创建的代码如下:create
FUNCTION returunclassfirstlist(-- Add the parameters for the function
here)RETURNS TABLE ASRETURN (-- A...
分类:
数据库 时间:
2014-05-08 22:00:43
阅读次数:
454
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
2014.5.5 获取客户端真实ip地址出现问题,解答如下: When you have NAT
(Network Address Translation) device before your servlet
containerrequest.getRemoteAddr()returns the....
分类:
其他好文 时间:
2014-05-07 19:02:49
阅读次数:
261
ismember 判断A中的元素在B中有没有出现 LIA = ismember(A,B)
for arrays A and B returns an array of the samesize as A containing true where
the elements of A are i...
分类:
其他好文 时间:
2014-05-05 22:25:11
阅读次数:
317
js工具类的功能有:
1、去掉字符串前后空格
2、清空select
3、验证手机号
4、字符串转换int型数字
5、获取checkbox的选中的值
6、去掉左边的空白
7、去掉邮编的空白
源码如下:
/**
* 去掉字符串前后空格
*
* @param str
* @returns
*/
function trim(str){
return str.re...
分类:
Web程序 时间:
2014-05-04 18:50:51
阅读次数:
420
在官方的解释中,如[mdn] The slice() method returns a
shallow copy of a portion of an array into a new array
object.简单的说就是根据参数,返回数组的一部分的copy。所以了解其内部实现才能确定它是如何工作...
分类:
Web程序 时间:
2014-05-01 14:10:18
阅读次数:
652
create function [dbo].[HtoSec](@lvalue as
int)RETURNS intBEGINDECLARE @temp intSet @temp = @lvalue * 60 * 60RETURN
@tempENDcreate function [dbo].[GetT...
分类:
数据库 时间:
2014-04-29 22:04:03
阅读次数:
515