摘要: in `_str`varchar(8000),out `outstr`varchar(8000) BEGIN if instr(_str,',')>0 THEN select CONCAT("'",REPLACE(_str,',',"','"),"'") into outstr; else sele 阅读全文
posted @ 2019-04-26 15:09 嗯哼,还好 阅读(1091) 评论(0) 推荐(0) 编辑
摘要: s_str varchar(2000), s_split varchar(2) begin /*split分割字符串并放入临时表*/ declare lenstr int ; declare result varchar(248) default ''; declare i int DEFAULT 阅读全文
posted @ 2019-04-26 15:05 嗯哼,还好 阅读(387) 评论(0) 推荐(0) 编辑
摘要: declare m_cur cursor for select col from tx_strlist;-- tx_str_split :执行存储过程后的临时表 declare continue handler for not found set _done=true; -- 打开游标 open m 阅读全文
posted @ 2018-09-19 16:52 嗯哼,还好 阅读(953) 评论(0) 推荐(0) 编辑
摘要: C#中的委托和事件 - Part.1 2007-9-23 分类: C# 语言 注意:文中代码在VS2005下通过,由于VS2003(.Net Framework 1.1)不支持隐式的委托变量,所以如果在一个接受委托类型的位置直接赋予方法名,在VS2003下会报错,解决办法是显式的创建一个委托类型的实 阅读全文
posted @ 2017-12-04 11:17 嗯哼,还好 阅读(192) 评论(0) 推荐(0) 编辑
摘要: using System.Threading.Tasks;using System.IO;using System.Drawing; public static int Shuy(string Sname,string fname) { try { Image image = Image.FromF 阅读全文
posted @ 2017-11-23 10:50 嗯哼,还好 阅读(96) 评论(0) 推荐(0) 编辑
摘要: private static readonly Uri address = new Uri("http://localhost:55242/"); public ActionResult Show(int PageIdex = 1) { string name = Request["txtName" 阅读全文
posted @ 2017-11-23 10:43 嗯哼,还好 阅读(130) 评论(0) 推荐(0) 编辑
摘要: create trigger tri_Cardon UserCardInfofor insertasbegin declare @No varchar(50) declare @Name varchar(50) declare @Money varchar(50) select @No=CardNo 阅读全文
posted @ 2017-11-22 13:48 嗯哼,还好 阅读(109) 评论(0) 推荐(0) 编辑
摘要: -- Template generated from Template Explorer using:-- Create Procedure (New Menu).SQL Use the Specify Values for Template Parameters -- command (Ctrl- 阅读全文
posted @ 2017-11-21 13:35 嗯哼,还好 阅读(150) 评论(0) 推荐(0) 编辑
摘要: -- Template generated from Template Explorer using:-- Create Procedure (New Menu).SQL Use the Specify Values for Template Parameters -- command (Ctrl- 阅读全文
posted @ 2017-11-21 13:35 嗯哼,还好 阅读(146) 评论(0) 推荐(0) 编辑
摘要: function AddP() { //定义字符串 var str = ""; //遍历动态行的值 $("tbody tr").each(function () { //遍历当前行下的input元素 $(this).children().children().each(function () { / 阅读全文
posted @ 2017-11-20 16:23 嗯哼,还好 阅读(99) 评论(0) 推荐(0) 编辑