- contrib/hbmysql/tests/hbmk.bat
+ contrib/hbmysql/tests/hbmysql.hbp
- contrib/xhb/tests/hbmk.bat
+ contrib/xhb/tests/xhb.hbp
- contrib/hbodbc/tests/hbmk.bat
+ contrib/hbodbc/tests/hbodbc.hbp
- contrib/hbtpathy/tests/hbmk.bat
+ contrib/hbtpathy/tests/hbtpathy.hbp
- contrib/hbmsql/tests/hbmk.bat
+ contrib/hbmsql/tests/hbmsql.hbp
- contrib/hbmzip/tests/hbmk.bat
+ contrib/hbmzip/tests/hbmzip.hbp
- contrib/hbole/tests/hbmk.bat
+ contrib/hbole/tests/hbole.hbp
- contrib/hbsqlit3/tests/hbmk.bat
+ contrib/hbsqlit3/tests/hbsqlit3.hbp
- contrib/hbfbird/tests/hbmk.bat
+ contrib/hbfbird/tests/hbfbird.hbp
- contrib/hbziparc/tests/hbmk.bat
+ contrib/hbziparc/tests/hbziparc.hbp
- contrib/hbnf/tests/hbmk.bat
+ contrib/hbnf/tests/hbnf.hbp
- contrib/rddsql/tests/hbmk.bat
+ contrib/rddsql/tests/rddsql.hbp
- contrib/hbhpdf/tests/hbmk.bat
+ contrib/hbhpdf/tests/hbhpdf.hbp
- contrib/rddado/tests/hbmk.bat
+ contrib/rddado/tests/rddado.hbp
- contrib/hbpgsql/tests/hbmk.bat
+ contrib/hbpgsql/tests/hbpgsql.hbp
- contrib/rddads/tests/hbmk.bat
+ contrib/rddads/tests/rddads.hbp
- contrib/hbfimage/tests/hbmk.bat
+ contrib/hbfimage/tests/hbfimage.hbp
- contrib/hbgd/tests/hbmk.bat
+ contrib/hbgd/tests/hbgd.hbp
- contrib/hbmisc/tests/hbmk.bat
+ contrib/hbmisc/tests/hbmisc.hbp
- contrib/hbtip/tests/hbmk.bat
+ contrib/hbtip/tests/hbtip.hbp
- contrib/hbgf/tests/hbmk.bat
+ contrib/hbgf/tests/hbgf.hbp
- contrib/hbwin/tests/hbmk.bat
+ contrib/hbwin/tests/hbwin.hbp
- contrib/hbvpdf/tests/hbmk.bat
+ contrib/hbvpdf/tests/hbvpdf.hbp
- contrib/hbssl/tests/hbmk.bat
+ contrib/hbssl/tests/hbssl.hbp
- contrib/hbwhat/tests/hbmk.bat
+ contrib/hbwhat/tests/hbwhat.hbp
* Switched from WIN/DOS specific to platform
independent .hbp files. These will be automatically
picked by hbmk (prg). Some libnames will need tweaking
for non-Windows platforms.
! Fixed a few liblists along the way.
* contrib/hbgd/gdwrp.c
! Fixed to properly check GD lib version for conditional
compiling. Formerly used GD_VERS isn't defined by the
library headers.
- contrib/hbmisc/tests/Makefile
* contrib/hbmisc/doc/gendoc.bat
- contrib/hbmisc/doc/libmisc.lnk
- contrib/hbmisc/doc/libmisc.rsp
+ contrib/hbmisc/doc/hbmisc.lnk
+ contrib/hbmisc/doc/hbmisc.rsp
* libmisc -> hbmisc
* util/hbmk/hbmk.prg
+ Added TODO.
* ChangeLog
* TODO marked DONE.
/* * $Id$ */ README 23/12/2003 - Harbour Low Level api for Firebird and Interbase RDBMS This work is not finished yet. It's to be seem like Harbour TMysql routines. To use with bcc, you need import library, ex: implib fbclient.lib fbclient.dll or implib gds32.lib gds32.dll. On Linux you will need link fbclient.so, this can be found usually at /usr/lib. For full firebird documentation look at: Firebird home: http://firebird.sourceforge.net/index.php Api: http://www.ibphoenix.com/downloads/60ApiGuide.zip Data Definition: http://www.ibphoenix.com/downloads/60DataDef.zip Language Reference: http://www.ibphoenix.com/downloads/60LangRef.zip Developers guide: http://www.ibphoenix.com/downloads/60DevGuide.zip The Class implementation has no all implementation like TMysql has, because Firebird it's diferent. For example, you can't navigate in records like Mysql do, ex: Getrow( number of row ), in firebird you can just go forward. You will need ibase.h, it can be found at firebird/include FILES: firebird.c - Low level api TFirebird.prg - Class implementation, it's to be seems like TMysql. tests\simple.prg - Simple test class tests\stress.prg - Stress test class tests\test.prg - Testing using only low level api tests\test.c - Pure C code to test firebird access. TODO: Full implementation of blob control. For now, we have only partial control, only for text blobs (sybtype 1). Improve Insert and Update commands using DSQL. Implements to do: FBOpenBlob( blob_id ) FBReadBlob(blob_id, string, segment_size) FBCreateBlob() FBPutBlob(blob_id, string, segment_size) FBCloseBlob( blob_id ) BUGS: Fix a few windows gpf and linux segment fault. I Need some help to find what's going on here. That's all folks and sorry my poor english Rodrigo Moreno - rodrigo_moreno@yahoo.com