比较简陋的数据库应用,唯一能看的就是对ODBC的封装...

源代码在线查看: table.h

软件大小: 15 K
上传用户: haibokaishi2006
关键词: ODBC 比较 数据库 封装
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef _TABLE_H
				#define _TABLE_H
				
				#include "String.h"
				#include "Grid.h"
				
				class Table
				{
				public:
					Table(int nrow, int ncol);
					~Table();
				
					void SetRowTitle(const String* str);
					void SetColTitle(const String* str);
					void SetTable(Grid** aGr);
					void ShowTable(int page = 0);
				
				private:
					int rowNum;
					int colNum;
					int* rowHeight;
					int* colWidth;
					int curRow;
					const String* rowTitle;
					const String* colTitle;
					Grid** gr;
				
					void DrawBottom();
				
				//--------------------------------------
					Table(const Table&);
					Table& operator=(const Table&);
				};
				
				#endif			

相关资源