10 2015 档案

Ajax调用WebService(一)
摘要:Ajax调用WebService(一)http://www.cnblogs.com/leslies2/archive/2011/01/26/1934889.html分类:Ajax 使用技术WebService应用技术ASP.NET学习记录2011-07-05 17:5115799人阅读评论(9)收藏... 阅读全文

posted @ 2015-10-30 17:29 chengjunde 阅读(190) 评论(0) 推荐(0)

DDD 领域驱动设计-谈谈 Repository、IUnitOfWork 和 IDbContext 的实践
摘要:http://www.cnblogs.com/xishuai/p/ddd-repository-iunitofwork-and-idbcontext.html 阅读全文

posted @ 2015-10-23 17:48 chengjunde 阅读(169) 评论(0) 推荐(0)

Ios学习
摘要:http://www.cnblogs.com/superhappy/archive/2013/04/23/3038493.htmlhttp://www.360doc.com/content/14/0309/10/11029609_358970353.shtmlhttp://blog.sina.com... 阅读全文

posted @ 2015-10-21 16:19 chengjunde 阅读(137) 评论(0) 推荐(0)

函数与复杂的存储过程
摘要:USE [ChiefmesNew]GO/****** Object: UserDefinedFunction [dbo].[FN_GetIsolationQty] Script Date: 10/19/2015 13:48:18 ******/SET ANSI_NULLS ONGOSET Q... 阅读全文

posted @ 2015-10-20 16:41 chengjunde 阅读(406) 评论(0) 推荐(0)

MES系统的有用存储过程
摘要:USE [ChiefmesNEW]GO/****** Object: StoredProcedure [dbo].[st_WMS_ImportStockInBill] Script Date: 10/13/2015 17:30:47 ******/SET ANSI_NULLS ONGOSET... 阅读全文

posted @ 2015-10-16 17:56 chengjunde 阅读(626) 评论(0) 推荐(0)

MS-SQL Server字符串处理函数大全
摘要:MS-SQL Server字符串处理函数大全 select语句中只能使用sql函数对字段进行操作(链接sql server), select 字段1 from 表1 where 字段1.IndexOf("云")=1; 这条语句不对的原因是indexof()函数不是sql函数,改成sql对应的函数就可... 阅读全文

posted @ 2015-10-16 11:06 chengjunde 阅读(756) 评论(0) 推荐(0)

iOS开发 关于SEL的简单总结
摘要:SEL就是对方法的一种包装。包装的SEL类型数据它对应相应的方法地址,找到方法地址就可以调用方法。在内存中每个类的方法都存储在类对象中,每个方法都有一个与之对应的SEL类型的数据,根据一个SEL数据就可以找到对应的方法地址,进而调用方法。AD:@interfacePerson:NSObject+(v... 阅读全文

posted @ 2015-10-15 08:52 chengjunde 阅读(634) 评论(0) 推荐(0)

Objective-C的singleton模式
摘要:最近因为在ios应用开发中,考虑到一些公共方法的封装使用,就决定使用单例模式的写法了。。不知道,Object-c中的单例模式的写法是否和java中的写法是否有所区别?于是阿堂从网上一搜,发现“Objective-C的singleton模式”一文被很多人转载了,其主要内容如下Apple官方建议 由于... 阅读全文

posted @ 2015-10-14 17:52 chengjunde 阅读(181) 评论(0) 推荐(0)

iOS类别(Category)
摘要:iOS类别(Category)与扩展(Extension)苹果的官方文档Category在iOS开发中使用非常频繁。尤其是在为系统类进行拓展的时候,我们可以不用继承系统类,直接给系统类添加方法,最大程度的体现了Objective-C的动态语言特性。#import@interfaceNSObject ... 阅读全文

posted @ 2015-10-14 14:39 chengjunde 阅读(1063) 评论(0) 推荐(0)

SQL 语句转换格式函数Cast、Convert
摘要:SQL 语句转换格式函数Cast、Convert CAST和CONVERT都经常被使用。特别提取出来作为一篇文章,方便查找。 CAST、CONVERT都可以执行数据类型转换。在大部分情况下,两者执行同样的功能,不同的是CONVERT还提供一些特别的日期格式转换,而CAST没有这个功能。 既然C... 阅读全文

posted @ 2015-10-10 17:56 chengjunde 阅读(271) 评论(0) 推荐(0)

存储过程[st_MES_RptInspectShipment]
摘要:USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[st_MES_RptInspectShipment] Script Date: 10/10/2015 16:00:02 ******/SET ANSI_NULLS ONGO... 阅读全文

posted @ 2015-10-10 17:40 chengjunde 阅读(216) 评论(0) 推荐(0)

存储过程函数的调用
摘要:USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[ImportProductForDay] Script Date: 10/08/2015 11:34:35 ******/SET ANSI_NULLS ONGOSET QU... 阅读全文

posted @ 2015-10-10 17:37 chengjunde 阅读(507) 评论(0) 推荐(0)

SQl函数的写法
摘要:USE [ChangHong_612]GO/****** Object: UserDefinedFunction [dbo].[FN_GetProdQty] Script Date: 10/08/2015 14:05:16 ******/SET ANSI_NULLS ONGOSET QUOT... 阅读全文

posted @ 2015-10-10 17:34 chengjunde 阅读(537) 评论(0) 推荐(0)

加料记录(大屏幕)
摘要:USE [ChangHongWMS612]GO/****** Object: StoredProcedure [dbo].[WMS_MonitorMaterialPut] Script Date: 10/08/2015 09:55:05 ******/SET ANSI_NULLS ONGOS... 阅读全文

posted @ 2015-10-10 17:33 chengjunde 阅读(194) 评论(0) 推荐(0)

ios 调试
摘要:http://www.cnblogs.com/weilaikeji/p/3306597.htmlhttp://www.cnblogs.com/Twisted-Fate/p/4760156.htmlhttp://www.cnblogs.com/macroxu-1982/p/3470665.html 阅读全文

posted @ 2015-10-10 17:26 chengjunde 阅读(121) 评论(0) 推荐(0)

c# 递归算法
摘要:c# 递归算法2009-03-13 09:446950人阅读评论(8)收藏举报算法c#funn2c1)1、1、2、3、5、8.......用递归算法求第30位数的值? 首先我们可以发现从第3位数起后一位数等于前两位数值之和,即:x=(x-1)+(x-2),x>2; 这里需要不断的相加,第一时刻就会想... 阅读全文

posted @ 2015-10-10 17:24 chengjunde 阅读(12252) 评论(0) 推荐(0)

ios之点语法
摘要:第一个object c 程序 首先新建一个项目,“create a new Xcode project"-"OS X下的Application"-"Command Line Tool" ,命名为“点语法”,Type为“Foundation”,不要勾选“Use Automatic Reference... 阅读全文

posted @ 2015-10-10 17:11 chengjunde 阅读(417) 评论(0) 推荐(0)

SQL Server中如何获取当前年,月,日,时,分,秒
摘要:分类:SQL Serverselect GETDATE() as '当前日期',DateName(year,GetDate()) as '年',DateName(month,GetDate()) as '月',DateName(day,GetDate()) as '日',DateName(dw,Ge... 阅读全文

posted @ 2015-10-10 14:31 chengjunde 阅读(887) 评论(0) 推荐(0)

when not exists 用法
摘要:USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[st_MES_UpdateInspectResult] Script Date: 10/09/2015 16:15:36 ******/SET ANSI_NULLS ONG... 阅读全文

posted @ 2015-10-09 17:23 chengjunde 阅读(564) 评论(0) 推荐(0)

导航