码迷,mamicode.com
首页 >  
搜索关键字:LS Data MCU    ( 71237个结果
C# List<T> To DataTable
1 public DataTable ConvertToDataTable(IList data) 2 { 3 PropertyDescriptorCollection properties = 4 TypeDescriptor.GetProperti...
分类:其他好文   时间:2014-07-22 23:17:12    阅读次数:463
python运算符重载2
1、重载构造函数和减法运算__init__,__sub__ #file number.py class Number: def __init__(self,data): self.data = data def __sub__(self,other): return Number(se...
分类:编程语言   时间:2014-07-22 23:15:36    阅读次数:510
linux命令
1、文件目录操作 pwd:显示当前目录 cd:目录跳转 ls:-a—全部;-l—列举目录;-F--文件类型;-r--逆向(从后向前);-R--递归;-S--大小 locate:查找文件或目录 clear:清除终端窗口 cat:显示文件内容 head:查看文件开头部分 ...
分类:系统相关   时间:2014-07-22 23:14:53    阅读次数:708
在SSIS 2012中使用CDC(数据变更捕获)
最新项目稍有空隙,开始研究SQL Server 2012和2014的一些BI特性,参照(Matt)的一个示例,我们开始体验SSIS中的CDC(Change Data Capture,变更数据捕获)。注:如果需要了解关于SQL Server 2008中的CDC,请看这里http://www.cnblo...
分类:其他好文   时间:2014-07-22 23:13:55    阅读次数:676
gcc初步窥探
由于没有上过Linux编程这门课,所以Linux学得很水啊!!用来用去都是ls -al ; cd .. ;这些渣命令,尤其gcc都不知道什么东西来的,所以先学一下吧。一.程序的编译过程对于GUN编译器来说,程序的编译要经历预处理、编译、汇编、连接四个阶段,如下图所示:在 预处理阶段,输入的是C语言....
分类:其他好文   时间:2014-07-22 23:11:35    阅读次数:323
Windows 设置Mongodb
安装MongoDB 将解压所得的bin文件夹内文件部署于C:\mongodb\bin 建立数据库文件夹 C:\mongodb\data\db 准备以下内容的配置文件mongodb.cfg dbpath=C:\mongodb\data\db #数据库路径logpath=C:\mongodb\data\...
分类:数据库   时间:2014-07-22 23:08:34    阅读次数:338
防止自动锁屏代码
class Work { [DllImport("user32.dll")] static extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr extr...
分类:其他好文   时间:2014-07-22 23:06:55    阅读次数:347
一个静态的HTML页面用jquery ajax登录到sharepoint页面
$.ajax({type:"get", url:"http://", data:"name="+userid+"&password="+password,async:true, error:function(request){alert("Connectionerror"); }, success:...
分类:Web程序   时间:2014-07-22 23:06:54    阅读次数:373
代码生成器
一.界面设计 二.具体代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; using System...
分类:其他好文   时间:2014-05-01 15:26:48    阅读次数:345
ExtJS 在IE7下报 isModel为空为空或不是对象
刚开始以为是兼容性问题……后来,发现居然是自定义的data数据多了个逗号。本来定义了多个数据,有一次把后面几条数据删除了,保留下来的最后一条数据后面的逗号没去掉。--!
分类:Web程序   时间:2014-05-01 14:32:55    阅读次数:932
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!