摘要: 对数据进行转换就是对数据的合并、清理和整合。通过转换,能够实现不同的源数据在语义上的一致性。SAP BI 的转换(Transformation) 定义的就是对数据进行处理的规则。当数据从一个BI 对象载入到还有一个BI 对象时,数据是经过转换的。在源对象和目标对象之间创建一个转换,转换将源对象的字段... 阅读全文
posted @ 2014-06-02 20:57 zfyouxi 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1. 函数说明pipe(建立管道):1) 头文件 #include2) 定义函数: int pipe(int filedes[2]);3) 函数说明: pipe()会建立管道,并将文件描写叙述词由參数filedes数组返回。 filedes[0]为管道里的读取端 filedes[1]则为管道的写入端... 阅读全文
posted @ 2014-06-02 20:45 zfyouxi 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 新浪微博的OpenAPI登录public static IEnumerator LoginRequest(string userid, string passwd, Action action) { xDebug.Log("GetRequest 1"); strin... 阅读全文
posted @ 2014-06-02 20:33 zfyouxi 阅读(1889) 评论(0) 推荐(0) 编辑
摘要: 看了Mustache的github,学学此中的语法,做个笔记1.简单的变量调换:{{name}}1 var data = { "name": "Willy" };2 Mustache.render("{{name}} is awesome.",data);返回成果Willyis awesome.2.... 阅读全文
posted @ 2014-06-02 20:08 zfyouxi 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 本文的实现是參照我之前在做iOS时实现的一个能够循环的列表这里用C++重写一遍。效果:原文地址:http://blog.csdn.net/qqmcy/article/details/27393011用法:能够使用创建project时的HelloWorld測试,h文件里加入循环列表的监听回调 void... 阅读全文
posted @ 2014-06-02 20:07 zfyouxi 阅读(667) 评论(0) 推荐(0) 编辑