码迷,mamicode.com
首页 >  
搜索关键字:local data    ( 85975个结果
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
SQL Server 2008登录错误:无法连接到(local)解决方法
2种解决方式:1.服务器名称那里使用“机器名\服务器名”如:OIAR7RFIC62JX36\SQLEXPRESS(方式简单,推荐)2.打开SQLServer配置管理器--->SQLNativeClient右键点击“别名”-->新建别名协议里选择“NamedPipes”,然后别名里输入“(local)...
分类:数据库   时间:2014-07-22 23:15:33    阅读次数:498
shell脚本遍历目录及其下子目录
用shell写了个递归遍历目录的脚本,本脚本实现递归遍历指定目录,打印目录下的文件名(全路径)。#!/bin/sh function scandir() { local cur_dir parent_dir workdir workdir=$1 cd ${workdir} if [ ${w...
分类:其他好文   时间:2014-07-22 23:14:53    阅读次数:563
在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
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
关于cocos2dx+lua使用cocosbuilder乱弹
cocos2d-x 3.0 + cocosbuilder 3.0使用中发现每个按钮回调都要写一行对应的回调如:1 local function onMenuItemAClicked()2 ...3 end4 5 TestMenusLayer["onMenuItemAClicked"] = o...
分类:其他好文   时间:2014-07-22 23:06:54    阅读次数:321
一个静态的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
ReportView动态加载带参数的RDCL文件
在vs里新建一个winform程序"ReportViewTest",在form1中添加一个reportView控件,from1的load事件如下: private void Form1_Load(object sender, EventArgs e) { Data...
分类:其他好文   时间:2014-04-29 17:16:47    阅读次数:409
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!