上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 80 下一页
摘要: ObjectARX中调用ADO封装类实现数据库查询读取写入数据的一个类实例//#include "dbSimpleClass.h" #pragma once #include "stdafx.h" // #include "Convert.h" #include "CAdoDb.h" #ifndef _dbSimpleClass_H_ #define _dbSimpleClass_H_ // class dbSimpleClass { public: Convert cvt; CAdoDb adodb; //ado 阅读全文
posted @ 2011-11-01 17:43 sqlite例子 阅读(356) 评论(0) 推荐(0)
摘要: ObjectARX中ADO操作数据库的一个类实例封装//定义一个CAdoDb.h的C++Ado的操作的一个类实例定义 #pragma once // #include "CAdoDb.h" #include "stdafx.h" #include "Convert.h" #ifndef _CAdoDb_H_ #define _CAdoDb_H_ enum EnumAdoDbType { DbAccess=0, DbSQLServer=1, DbOracle=2, }; class CAdoDb { public: CAdoDb(voi 阅读全文
posted @ 2011-11-01 17:39 sqlite例子 阅读(363) 评论(0) 推荐(0)
摘要: 一. 官网说明Oracle官方文档对Bootstrap$的说明:UnderstandingBootstrap Of Oracle Databasehttp://blog.csdn.net/tianlesoftware/article/details/6823453 In Oracle,Bootstrap refers to loading of metadata (data dictionary) before we OPEN thedatabase. Bootstrap objects are classified as the objects (tables / indexes / clu 阅读全文
posted @ 2011-10-31 19:24 sqlite例子 阅读(223) 评论(0) 推荐(0)
摘要: // MyArxFirst.cpp : 定义 DLL 应用程序的导出函数。 //ObjectArx开发对txt文本文件的操作一例 #include "stdafx.h" #include <aced.h> #include <rxregsvc.h> #include <tchar.h> #include <fstream> #include <iostream> // #include <comdef.h> using namespace std; //定义两个函数 void initApp(); vo 阅读全文
posted @ 2011-10-31 14:44 sqlite例子 阅读(539) 评论(0) 推荐(0)
摘要: 一. X$表说明之前整理了一篇有关动态性能视图的blog:Oracle 动态性能视图http://blog.csdn.net/tianlesoftware/article/details/5863191Oracle 参数分类 和 参数的查看方法http://blog.csdn.net/tianlesoftware/article/details/5583655 The fixed X$tables are no real tables; you will not find them in any database schema. Thesevirtual tables provide a SQ 阅读全文
posted @ 2011-10-30 19:13 sqlite例子 阅读(207) 评论(0) 推荐(0)
摘要: 一.FlashbackDatabase 和 Restore Points 说明官网的链接如下:http://download.oracle.com/docs/cd/E18283_01/backup.112/e10642/flashdb.htm关于FlashbackDatabase 的内容,我之前的blog里有说明:Oracle Flashback 技术 总结http://blog.csdn.net/tianlesoftware/article/details/4677378这里提到这两者,是因为这两者的功能和类似。官方的说明如下: OracleFlashback Databaseand res 阅读全文
posted @ 2011-10-29 21:06 sqlite例子 阅读(234) 评论(0) 推荐(0)
摘要: stdafx.h-----------------------// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 // #pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> #include <fstream> #include <iostream> #include <ole2.h> //#include <stdio.h> #include 阅读全文
posted @ 2011-10-28 18:06 sqlite例子 阅读(365) 评论(0) 推荐(0)
摘要: 产品开发专用的GPS超小型模块GPS卫星定位模块是开发GPS相关产品的必备器件,站长在开发GPS产品中也逐步熟悉这类器件。产品1:全新SIRF第三代高灵敏度引线式GPS接收模块产品清单如下:每套189元1。引线式GPS模块一个2。GPS磁性接收天线一根(馈线2米长,MMCX接口)3。GPS输出彩虹软线一根4。资料光盘一张(包含:GPS模块的PDF文档、电子地图软件、GPS数据格式定义、串口数据监控软件、典型51单片机接收GPS模块数据的汇编语言源程序和C语言参考资料等)这是采用SiRF第三代芯片的最新产品,主要是灵敏度大大提高,例如在汽车上应用时,只要靠近车窗就能较好工作。我们这款本模块主要是 阅读全文
posted @ 2011-10-28 15:11 sqlite例子 阅读(270) 评论(0) 推荐(0)
摘要: 一.Oracle Lifetime Support 分类网站的说明http://www.oracle.com/us/support/lifetime-support/index.html在如下这篇文章里有更详细的说明:http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdfOracle Lifetime Support Policy With OracleSupport, you know up front and with certainty how long your Oracle pro 阅读全文
posted @ 2011-10-27 19:01 sqlite例子 阅读(295) 评论(0) 推荐(0)
摘要: // win32console.cpp : 定义控制台应用程序的入口点。 //C++读取txt文件的方法 #include "stdafx.h" #include <fstream> #include <iostream> using namespace std; typedef struct node{ int data; struct node *next; } node; node *creat(ifstream &ifp) { node *h=NULL,*p=NULL,*q=NULL; int data; while (ifp> 阅读全文
posted @ 2011-10-27 18:06 sqlite例子 阅读(617) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 80 下一页