常建57

路漫漫其修远兮。。。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2014年11月19日

摘要: Javascript Duff装置 循环展开(Javascript Loop unrolling Duff device) 阅读全文
posted @ 2014-11-19 22:24 常建57 阅读(524) 评论(0) 推荐(0) 编辑

2014年10月30日

摘要: html5 可以为元素添加自定义属性,但是要添加前缀data-。(下面这个例子中的自定义属性的命名,其实是不规范的,不应该包含大写字符,例如:data-myName 应改命名为:data-myname. 应为我们在维护别人的代码,所以就会遇到如下的问题。) class test定义好属性之后该如何... 阅读全文
posted @ 2014-10-30 12:09 常建57 阅读(288) 评论(0) 推荐(0) 编辑

2014年9月23日

摘要: Problem:There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "You... 阅读全文
posted @ 2014-09-23 10:06 常建57 阅读(3567) 评论(0) 推荐(0) 编辑

2014年9月18日

摘要: gacutil /i "C:\Test.dll"gacutil /u "Test" 阅读全文
posted @ 2014-09-18 14:34 常建57 阅读(116) 评论(0) 推荐(0) 编辑

摘要: Problem: Assembly generation failed -- Referenced assembly '' does not have a strong nameCause: this is due to you have referenced a third-party dll w... 阅读全文
posted @ 2014-09-18 14:29 常建57 阅读(139) 评论(0) 推荐(0) 编辑

摘要: There are two method to call .net DLL in SQLSERVER.The first one is to use the sql clr but it has a lot of limit.The second method is to use SSIS pack... 阅读全文
posted @ 2014-09-18 14:16 常建57 阅读(171) 评论(0) 推荐(0) 编辑

2014年9月12日

摘要: It's hard to find some samples about theconvertion between string and BlobColumn.AddBlobData.It's 太坑人了1.convertBlobColumn to string. (Get user name f... 阅读全文
posted @ 2014-09-12 15:35 常建57 阅读(198) 评论(0) 推荐(0) 编辑

2014年9月10日

摘要: 1. Create Table type in Sqlserver2008.CREATE TYPE dbo.WordTable as table( [WordText] [nchar](100) NULL, [WordCount] [int] NULL)And the target t... 阅读全文
posted @ 2014-09-10 10:52 常建57 阅读(146) 评论(0) 推荐(0) 编辑

2014年7月29日

摘要: 在学习nodejs partials view时,怎么都不能运行成功。经过艰苦探索,终于成功了,分享一下。Cause: nodejs 的express 版本之间不是很兼容,各个版本差异很大,一般用npm 默认安装的都是最新版本的express。Solution:partials() 如果要直接在ej... 阅读全文
posted @ 2014-07-29 18:18 常建57 阅读(202) 评论(0) 推荐(0) 编辑

2014年6月26日

摘要: 今天学习了node.js ,来看一下hello world 的写法。1. 首先安装node.js的驱动文件。 http://nodejs.org/2. a:安装好node之后,在CMD窗口输入node,再输入console.log('hello world.');3.调用文本文件。sample: 创... 阅读全文
posted @ 2014-06-26 12:02 常建57 阅读(855) 评论(0) 推荐(0) 编辑