Win32下Foxbase+資料庫瀏覽程式的編寫 (轉)

themoney發表於2007-10-04
Win32下Foxbase+資料庫瀏覽程式的編寫 (轉)[@more@]

一、目的
: (Cyrix 200MHz ), 16M,4G
要求:在98的中滑鼠雙擊任何一個Foxbase+圖示(每個檔案資料記錄在一萬條以下),開啟資料庫檔案並顯示資料庫內容。

二、步驟
Foxbase+資料庫檔案格式(參照Mark Sadler的檔案格式說明和相應C語言源程式檔案)
中發生的問題:
以下是Mark Sadler的F.H檔案部分內容:
typedef unsigned char UCHAR;

struct FIELD_RECORD /* This structure is filled in memory */
{ /* with a fread. do not change. */
 char  name[11]; /* name of field in asciz */
 char  typ;   /* type of field...char,numeric etc. */
 char *field_data_address;  /* offset of field in record */
 #if defined(__TINY__) || defined(__SMALL__) || defined (__MEDIUM__)
 int space_holder; /* field_data_address must be 32 bits */
 #endif
 UCHAR len;   /* length of field */
 UCHAR dec;   /* decimals in field */
 UCHAR reserved_bytes[14]; /* reserved by se */
};

struct DBF
{
 char filename[MA]; /* dfilename */
 FILE *file_ptr; /* c file pointer */
 unsigned long int current_record;/* current record in memory */
 enum   /* status of file */
 {
 not_open=0,
 not_updated,
 updated
 } status;
 UCHAR num_fields;   /* number of fields */

 /* the following 7 variables are filled with a fread, do not change order or size */
 UCHAR dbf_version; /* version character */
 UCHAR update_yr; /* date of last update - year (-1900) */
 UCHAR update_mo; /* date of last update - month */
 UCHAR update_day;   /* date of last update - day */
 unsigned long int records; /* number of records in dbf */
 unsigned int header_length; /* length of header structure */
 unsigned int record_length; /* length of a record */
 /*  */
 struct FIELD_RECORD *fields_ptr; /* pointer to field array */
 char *record_ptr;   /* pointer to current record struct */
};

int d_addrec(struct DBF *d);
int d_blank(struct DBF *d);
int d_close(struct DBF *d);
int d_cpystr(struct DBF *s,struct DBF *d);
char d_getfld(struct DBF *d,int f,char *buff);
int d_getrec(struct DBF *d,unsigned long int r);
int d_open(struct DBF *d);
int d_putfld(struct DBF *d,int f,char *buff);
int d_putrec(struct DBF *d,unsigned long int r);

以上資料中提供的都提供了源程式,雖然大部分都是使用ANSI C,但卻是針對DOS方式下的。如日期:
  inregs.h.ah=0x2a;
 intdos(&inregs,&outregs);
 d->update_day=outregs.h.dl;
 d->update_mo=outregs.h.dh;
 d->update_yr=outregs.x.cx-1900;
這顯然在下無法編譯透過。但在DOS下完全可以編譯透過,並準確地讀出各條記錄資訊。
修改以上各函式,使之符合WIN32特點,編譯透過。
執行程式,發現無法正確顯示資料庫內容。
由於函式實現部分已經全部修改為Win32可以接受的形式,沒什麼問題,只有檢查DBF.H。
DOS的int與char一樣為8bit, 而WIN32中,int 為32bit,Smallint 為8bit。
修改DBF.h檔案,將struct中所有的int 改為Smallint,long int 改為int。
編譯透過,程式能正常執行。
三、總結
在WIN32沿用DOS方式下的C程式時,要特別注意不同平臺下的區別。
以上程式還可適當加強,如:讀入各項資料時應新建一執行緒,並增加一進度條顯示資料庫檔案讀入情況,再編寫一些函式(如Find、Delete等),增加一些功能,使程式更加完美。
本文是幾年前所作,希望對初學者有所幫助。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10794571/viewspace-974729/,如需轉載,請註明出處,否則將追究法律責任。

相關文章