摘要: 一. 初识Namespace Oracle通过namespace来管理schema object的名字,关于Namespace 的定义,在官网文档上没有找到一个详细的定义,在网上搜到一些相关信息: SchemaObject Namespaces A namespace defines a group of object types, within whichall names must be uniquely identified—by schema and name. Objects in differentnamespaces can share the same name. The O. 阅读全文
posted @ 2011-07-21 20:25 sqlite例子 阅读(363) 评论(0) 推荐(0)
摘要: 动态链接库dll创建静动态调用方法一例 动态链接库dll创建 MFC_DLL.dll stdafx.h 中添加函数声明 //定义求和函数-------------------------- extern "C" __declspec(dllexport) int __stdcall Add_new(int a,int b); extern "C" _declspec(dllexport) int WINAPI TestC(int i); extern "C" _declspec(dllexport) long __stdcall Lo 阅读全文
posted @ 2011-07-21 16:13 sqlite例子 阅读(199) 评论(0) 推荐(0)
摘要: 关于Oracle SGA中Shared Pool的详细说明,参考我的blog: Oracle Shared pool 详解 http://blog.csdn.net/tianlesoftware/article/details/6560956 在上篇blog里,介绍了shared pool 的组成和一些原理, 也有一些脚本,在这篇blog里,在补充几个查看Shared Pool 的脚本。 From:http://vsbabu.org/oracle/sect13.html一. Quick Check/* Formatted on 2011/7/21 10:41:56(QP5 v5.163.100 阅读全文
posted @ 2011-07-21 11:11 sqlite例子 阅读(482) 评论(0) 推荐(0)
摘要: Windows 32位汇编语言程序设计教程 之动态链接库http://www.feiesoft.com/win32asm/win32asm-11-2.html第11章 动态链接库和钩子11.1 动态链接库(1)11.1.1 动态链接库的概念在DOS环境下编过程序的读者一定知道静态库的含义——程序员将实现各种功能的代码写成一个个子程序(函数),编译成obj文件后,将多个obj文件组合成一个lib文件,当程序中要用到这些函数的时候,只需要指定函数名称,编译器就可以从库中抽出对应的子程序代码插入到可执行文件中去,这样就可以不必一遍遍地重写相同的功能代码。这种链接方法就是静态链接,静态链接的缺点显而易 阅读全文
posted @ 2011-07-21 10:11 sqlite例子 阅读(323) 评论(0) 推荐(0)