摘要:
SQL 2010-07-09 16:34:23 阅读20 评论0 字号:大中小 SqlParameter[] mylist ={ new SqlParameter("@title",SqlDbType.NVarChar), new SqlParameter("@Ret",SqlDbType.NVarChar)}; mylist[1].Value = title; mylist[2].Direction = ParameterDirection.Output;页面提示:string[1]:size 属性具有无效大小值0解决方案: 输出参数需指定长度如: n 阅读全文
摘要:
此SQL语句是来统计库存数量的SELECT TOP 100 PERCENT MAX(DISTINCT id) AS id, product_no, color, color2, product_type, SUM(number4) AS number, SUM(CASE WHEN ((product_size = '34' AND product_class = '女鞋') OR (product_size = '38' AND product_class = '男鞋') OR (product_class NOT IN ( 阅读全文
摘要:
解决办法一: 在begin transaction 前面加set xact_abort on 这样就可以在过程出错时中断执行,当然也就不能commit了 如此再在最后一个操作的后面加入 if @error=0 就说明所有的操作都执行成功了 就可以 commit 具体如: set xact_abort on begin trans declare ... <1>操作 <2>操作 ... <n>操作 if @error<>0 begin rollback transaction end else begin commit transaction en 阅读全文
摘要:
2008-11-14 22:531) 10表示间隔10秒刷新一次2)<script>window.location.reload(true);</script>如果是你要刷新某一个iframe就把window给换成frame的名字或ID号3)<script>window.navigate("本页面url");</script>4>function abc(){window.location.href="/blog/window.location.href";setTimeout("abc() 阅读全文
摘要:
public string SendMsg(string user,string password,string phone,string text) { try { //if (!Regex.IsMatch(phone, @"^(13|15)\d{9}$")) // return "手机号码格式错误!"; string url = "http://www.xunsai.net:8000/"; string param = "user=" + user+ "&password=" + p 阅读全文