1 --创建linked 2 exec sp_addlinkedserver 'a','','SQLNCLI','your ipaddress' 3 4 --登陆linked 5 exec sp_addlinkedsrvlogin 'a','false',null,'sa',123456' ...
分类:
数据库 时间:
2014-07-03 10:02:40
阅读次数:
225
not in子查询中有null值的时候 not in 会失效但是 in 的子查询中有null的 不会失效
分类:
其他好文 时间:
2014-07-03 07:02:38
阅读次数:
155
BindingContext[dataGridView1.DataSource].SuspendBinding(); dataGridView1.DataSource = null; dataGridView1.DataSource = XXX索引 -1...
分类:
其他好文 时间:
2014-07-03 06:53:34
阅读次数:
132
as运算符有一定的适用范围,它只适用于引用类型或可以为null的类型,而无法执行其他的转换,如值类型的转换以及用户自定义的类型转换,这类转换应该适用强制转换表达式来执行。as当转换不了的时候返回null而已,as不会抛出异常。 is运算符并不真正执行转换,它只是检查指定的对象是否与给定的类型是否兼....
分类:
其他好文 时间:
2014-07-03 06:37:57
阅读次数:
199
public static string HashPassword(string password) { if (password == null) { throw new ArgumentNul...
分类:
Web程序 时间:
2014-07-02 23:01:49
阅读次数:
292
前台: 前台: 绑定数据: protected void inti() { List roleList = roleDAL.List(); if (roleList == null) { Alert.Show("加载角色信息失败!", MessageBoxIcon.Warning); } cbl.....
分类:
数据库 时间:
2014-07-02 22:57:10
阅读次数:
388
//在js中if条件为null/undefined/0/NaN/""表达式时,统统被解释为false,此外均为true .//为空判断函数function isNull(arg1){return !arg1 && arg1!==0 &&typeof arg1!=="boolean"?true:fal...
分类:
Web程序 时间:
2014-07-01 16:32:25
阅读次数:
304
动态加载javascript文件Javascript代码 Java代码 function GetXmlHttpReuqest(){ var xmlHttp=null; try { xmlHttp = new XMLHttpRequest(); //对于firefox chrome等浏览器 } ...
分类:
编程语言 时间:
2014-07-01 11:43:14
阅读次数:
269
//判断是否为wifi连接
publicbooleanisWifiConnected(Contextcontext){
if(context!=null){
ConnectivityManagermConnectivityManager=(ConnectivityManager)context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfomWiFiNetworkInfo=mConnectivityManager
.get..
分类:
移动开发 时间:
2014-07-01 09:43:03
阅读次数:
245
题目
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.
Return a deep copy of the list.
方法
publi...
分类:
其他好文 时间:
2014-07-01 07:49:33
阅读次数:
186