随笔分类 - Database and SQL
摘要:IT学习无止境。以下整理一下计划学习和研究的东西。语言学习,重点关注C#(不能说掌握得差不多了,但继续作为主力编程工具需要不断提高)和C++11的进展,补一些boost的课(有条件的话看boost在新C++条件下如何演进)和C++遗忘的东西,回顾设计模式在这两个语言中的应用。留半个眼睛给Functional Programming和并发编程。有空粗略思考一些语言设计、对象模型、泛型和元编程、编译实现的问题。最近我发现越发对C++这门语言不感冒了。个人感觉,除了一些计算密集性能要求和架构要求有些紧张的场景,C++不是一个好的选择。对于前端界面应用,越来越没有C++什么事,对于大型的复杂的前端应用
阅读全文
摘要:What ISession.Flush() generally doesISession.Flush() updates OO side changes to the framework but not to the database; this has at least the following effects1. Internal flags change so that IsDirty() is always set to false2. updates internal flags/states of the framework so that it's consistent
阅读全文
摘要:This is a follow-up article to the previous one on the same topic in Chinese. Recent blogs are all expected to be in English since IME and language packs are not ready on the Ubuntu Linux that have newly been installed and I don't bother installing them until I've tried most of its exiting n
阅读全文
摘要:CICS临时存储(CICS Temporary Storage)以一组队列(CICS Temporary Storage Queues或简称TS Queues)的形式实现。说是“队列”,其实不是严格数据结构意义上的FIFO队列,而是一个对数据记录(Record)标识(Identify)并顺序存储的机构,以供CICS-COBOL程序访问。每个队列都有一个队列名queue name或队列数据标识data-id唯一识别。通常队列创建用户可以用其程序的EIBTRMID(终端号terminal-id)作为队列名的一部分以保证所创队列不重名。每个加入队列的记录都被系统赋予一个记录号item number,
阅读全文
摘要:工作需要使用NHibernate,用于比较庞大的关系模型。以下是使用过程中遇到问题的汇总(不断更新中)。1. 近日遇到"persistence context reported no row snapshot for (某个entity)"问题,通过反复分析,发现其原因是对应entity有一个以one-to-many联系之的owner没有保存(map和persist)。而且这个owner是从一个abstract class继承下来,这个class被标记了persist并被我做的拾取器收到并保存,而这个entity对应的类(扩展了这个abstract class)没有保存到数
阅读全文
摘要:所谓《中文Mainframe宝典合集》,是指一部中文版的关于IBM Mainframe相关知识和技术的综合参考文档。它的设计确保所有在UC参加学习过Mainframe并对其有基本概念的中国学生能够通过这部参考文献集不借助其他任何学习资料能够迅速定位知识点或整理出IBM的相关标准参考文档的大致搜寻路径;另一方面,它旨在为所有具有基本计算机系统概念的以中文为母语的科研和技术人员能根据他们的基本背景知识迅速了解Mainframe为课程或任何网上资料所公开而为笔者所了解并复原出的技术规则和设计原理。因而这个文档的设计原则是以计算机系统的组成原理和逻辑关系作为基础和脉络而展开,从根本上说是在剖析系统的合
阅读全文
摘要:1. 系统集成的基础设施RPC (Remote Procedure Call)RPC是现代C/S和分布式程序的基础概念之一,通常由具体的技术来实现。以下是远程通信通常遵循的模式:客户程序 <-> 桩(残根)函数接口 <-> Channel(协议栈通信通路) <-> 桩(残根)函数接口 <-> 服务程序优点: 隐藏传输细节; 简化; 透明桩函数接口的作用: 程序参数和通信栈上数据之间的转化、组织和传递。CORBA (COmmon Request Broker Architecture)CORBA曾经非常流行的一种RPC模式。其基本概念包括:物件Ob
阅读全文
摘要:内容创建中……
阅读全文
摘要:DB2 Isolation LevelsA speculation on the internal mechanisms of the 4 types of Isolation to get a better understanding of the notion of isolation levels and different sorts of anomalies.The following guess is mainly based common sence and a general idea of locking and concurrency.a) To protect the s
阅读全文
摘要:Introduce the author first, the following information is provided by wikipedia, the free encyclopedia:D. Richard Hipp (born April 9, 1961) is best known on the internet as the architect and primary author of SQLite. He and his wife, Ginger G. Wyrick, currently live and work in Charlotte, North Carol
阅读全文

浙公网安备 33010602011771号