home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c001 / 1.ddi / READ.ME < prev    next >
Encoding:
Text File  |  1990-06-25  |  28.8 KB  |  694 lines

  1.                        C/Database Toolchest
  2.  
  3. This file contains the latest information about the C/Database Toolchest
  4. Diskette(s), and complete instructions for using the C/Database programs
  5. and libraries with various C compilers.
  6.  
  7. ******************************************************************************
  8. PLEASE READ THIS FILE COMPLETELY before you use the Distribution Diskettes.
  9. ******************************************************************************
  10.  
  11. The Distribution Diskettes contains these things:
  12.  
  13.         executable version of the LDM program (compiled with Power C)
  14.         demo files for LDM
  15.         executable version of 6 utility programs (compiled with Power C)
  16.                 (dbtodbf, dbftodb, pressdb, prlabels, dumpdata, dumptree)
  17.         CBT library (medium memory model) for
  18.                 Power C 2.0+, Turbo C 2.0+, Quick C 2.0+, and Microsoft C 5.0+
  19.         ISAM library (medium memory model) for
  20.                 Power C 2.0+, Turbo C 2.0+, Quick C 2.0+, and Microsoft C 5.0+
  21.         source for LDM program, compatible with
  22.                 Power C 2.0+, Turbo C 2.0+, Quick C 2.0+, and Microsoft C 5.0+
  23.         source for 5 of the utility programs
  24.                 (dbtodbf, dbftodb, pressdb, prlabels, dumpdata)
  25.  
  26. All programs and libraries were compiled using the medium memory model (1
  27. meg code space, 64K data space).  To use a different memory model, you need
  28. to purchase the C/Database Library Source and re-compile for the desired
  29. model.
  30.  
  31. The source for the dumptree program is not on the Distribution Diskette; it
  32. is included with the C/Database Library Source (available separately)
  33. because it uses some source files from the CBT library.
  34.  
  35. You can purchase the C/Database Library Source separately to get these
  36. options:
  37.  
  38.         Control files for building ISAM and CBT libraries using
  39.                 the small, medium, and large memory models
  40.         Source for the ISAM and CBT libraries, compatible with
  41.                 Power C 2.0+, Turbo C 2.0+, Quick C 2.0+, Microsoft C 5.0+
  42.         Source for the dumptree tool program, compatible with
  43.                 Power C 2.0+, Turbo C 2.0+, Quick C 2.0+, Microsoft C 5.0+
  44.  
  45. Power C: If you have a version of Power C earlier than 2.0, you should
  46.          order an update.  Updates are $5.00 + $2.00 S&H.
  47.  
  48. Other Compilers: If you do not have one of the compiler versions listed
  49.          above, you should order an update from the appropriate vendor.
  50.  
  51. *******************   Installing C/Database Toolchest  *****************
  52.  
  53. Most of the files on the Distribution Diskette(s) are in "archive" form to
  54. pack more files on the disk.  The "install" program (described in Chapter 1
  55. of the C/Database manual) unpacks only the files required for a specific
  56. compiler.  On a hard disk, you will need somewhere between 1 meg and 1.4
  57. meg of free space to install the Distribution Diskette(s), depending on the
  58. compiler that you are using.  You will need an additional 720K to 800K to
  59. compile the LDM and tools programs.  You will not be able to compile the
  60. LDM program unless you have a hard disk.
  61.  
  62. To install the database for either Power C, Turbo C, Quick C, or Microsoft
  63. C, insert the C/Database Toolchest disk (disk 1 of 2 for 5 1/4" disks) into
  64. one of your floppy drives.  Then run the "install" program by typing
  65. X:install, where X is the name of the drive containing the floppy disk (for
  66. 5 1/4" disks, the install program will tell you when to insert disk 2 of
  67. 2).  For example, type A:INSTALL if the disk is in drive A.
  68.  
  69. The install program will ask you a series of questions.  At the end of each
  70. question, the default answer is displayed inside square brackets (ie.
  71. [default answer]).  If the default answer is suitable, you may select it by
  72. simply pressing the enter key.  By default, it is assumed that you have
  73. placed the master disk in drive [A], that you wish to install the files on
  74. a hard disk [h], that the directory to contain the files is [c:\c\database]
  75. (note: the install program will create the directory if it does not already
  76. exist), and that you will be using the Power C compiler [P].
  77.  
  78. The install program creates sub-directories named LDM and TOOLS.  The LDM
  79. sub-directory contains the C source code for the LDM program.  The TOOLS
  80. directory contains the C source code for various utility programs supplied
  81. with the C/Database Toolchest.
  82.  
  83. *********************   Running/Making the LDM Program   ******************
  84.  
  85. The distribution disk contains a sample database management progam named
  86. LDM.EXE.  To run a demonstration of this program, first change to the
  87. directory containing the installed files (eg.  cd \c\database), then simply
  88. type DEMO.  The LDM program itself may be executed by typing LDM
  89. [filename], where the optional [filename] is the name of a database file
  90. (such as DEMO.DB).
  91.  
  92.     C:>cd \c\database                   change to database directory
  93.     C:\C\DATABASE>demo                  run LDM demonstration
  94.     C:\C\DATABASE>ldm demo              run LDM interactively
  95.  
  96. The C source code for the LDM.EXE program is in the sub-directory named LDM.
  97. If you want to compile and link this program, first change directories so
  98. that the LDM sub-directory is the current directory, then type MAKELDM.
  99. Assuming that the database is installed in the directory named \c\database
  100. on drive C, type the following commands to compile and link the LDM
  101. program.
  102.  
  103.     C:>cd \c\database\ldm               change to LDM sub-directory
  104.     C:\C\DATABASE\LDM>makeldm           make new LDM.EXE
  105.  
  106. The MAKELDM.BAT file compiles the LDM program using the medium memory
  107. model.  If the compilation is successful, the LDM.EXE file in the parent
  108. directory is replaced by a new version of the program.  In the process of
  109. compiling, a directory named MEDIUM is created to store the medium memory
  110. model object files.  After you finish making any changes to the LDM
  111. program, you may want to remove this directory to recover the disk space.
  112. A batch file named CLEAN.BAT is provided for this purpose.  After executing
  113. MAKELDM, you can change back to the parent directory and type CLEAN to
  114. remove the MEDIUM object file directory.
  115.  
  116.     C:\C\DATABASE\LDM>cd ..
  117.     C:\C\DATABASE>clean
  118.  
  119.  
  120. If you have trouble compiling and/or linking LDM:
  121. ------------------------------------------------
  122.  
  123. It is assumed that your compiler can be executed from any directory and
  124. that it can find its own header files and libraries.  If you have trouble
  125. compiling and/or linking the LDM program, you should execute the following
  126. commands for your particular compiler.
  127.  
  128. Power C: assuming Power C is in the directory c:\powerc
  129.  
  130.     set path=c:\powerc
  131.  
  132. QuickC: assuming QuickC is in the directory c:\qc
  133.         assuming QuickC header files (.h) are in the sub-directory include
  134.         assuming QuickC library files (.lib) are in the sub-directory lib
  135.  
  136.     set path=c:\qc
  137.     set include=c:\qc\include
  138.     set lib=c:\qc\lib
  139.  
  140.     Note: By default, makeldm assumes that the NMAKE.EXE program is
  141.           present in your compiler directory.  If you have MAKE.EXE
  142.           rather than NMAKE.EXE, type the following to instruct
  143.           makeldm to use MAKE.EXE.
  144.  
  145.     makeldm make
  146.  
  147. Microsoft C: same as QuickC (substitute appropriate directory names)
  148.  
  149. Turbo C: assuming Turbo C is in the directory c:\tc
  150.          assuming Turbo C header files (.h) are in the sub-directory include
  151.          assuming Turbo C library files (.lib) are in the sub-directory lib
  152.          assuming Turbo C startup files (.obj) are in the sub-directory lib
  153.  
  154.     set path=c:\tc
  155.  
  156.     or use: set path=c:\tc\bin if Turbo C executables are in sub-directory bin
  157.             ------------------
  158.     Note: By default, makeldm assumes Turbo C is in the directory
  159.           \tc on the current drive.  If not, you should specify
  160.           the appropriate directory on the makeldm command-line
  161.           as shown in the example below.  However, if your Turbo C
  162.           header files are not in the sub-directory INCLUDE, or the
  163.           Turbo C library and startup files are not in the sub-directory
  164.           LIB, then you must change the directory names specified in the
  165.           definitions of CLIB, COBJ, and CFLAGS at the beginning of the
  166.           file named LDM.MAK.
  167.  
  168.     makeldm c:\turboc
  169.  
  170.  
  171. ********************   Running/Making the Tools Programs    *****************
  172.  
  173. The six programs named DBFTODB, DBTODBF, PRESSDB, PRLABELS, DUMPDATA, and
  174. DUMPTREE are described in chapter 15 of the C/Database Toolchest manual.
  175. You can run any of these six programs by simply typing the name of the
  176. program followed by the appropriate command-line arguments.  See the manual
  177. for details.
  178.  
  179. The C source code for all of these programs except DUMPTREE is installed
  180. in the sub-directory named TOOLS.  The source code for the DUMPTREE program
  181. is provided with the C/Database Library Source.
  182.  
  183. You can make new versions of these programs by typing MAKE name, where
  184. name is the name of the program (eg. make dbtodbf).
  185.  
  186.     MAKE name
  187.  
  188.     Note: Some versions of Microsoft C are supplied with NMAKE.EXE rather
  189.           than MAKE.EXE.  If you have NMAKE, type the following:
  190.  
  191.           NMAKE name
  192.  
  193.     Note: If you have Turbo C, you must also specify the .EXE extension.
  194.  
  195.           MAKE name.EXE
  196.  
  197. If you specify ALL (eg.  make all), then all six programs will be compiled
  198. and linked.
  199.  
  200. If you have trouble making the tools programs, follow the instructions
  201. below for your particular compiler, then try making the tools programs
  202. again.
  203.  
  204.  
  205. *****************  Compiling and Linking Your Own Programs  ****************
  206.  
  207. Before compiling and linking a C program, you must configure the
  208. environment so that your compiler can locate its own header files (ie.
  209. files specified by #include statements) and library files.  Before
  210. compiling programs that use the C/Database Toolchest functions, you must
  211. also do the following two things.  First, you must tell the compiler where
  212. to locate the database header files.  If your compiler can't locate the
  213. header files, you will get compile errors.  Second, you must tell the
  214. linker to search the database library files (ISAM.LIB and CBT.LIB).  If
  215. your linker doesn't search the database libraries, you will get link
  216. errors.  The only files that your linker searches automatically are the
  217. standard libraries distributed with your compiler.
  218.  
  219. The database header files and library files are located in the directory
  220. that you specified during installation (eg.  c:\c\database).  Since the
  221. database libraries (ISAM.LIB and CBT.LIB) are medium memory model
  222. libraries, you must select the medium memory model when you compile
  223. programs that use any of the database functions.  The Power C compiler
  224. uses the medium memory model by default.  However, the Turbo C, QuickC,
  225. and Microsoft C compilers use the small memory model by default.
  226.  
  227. We will assume that you have already listed the directory containing your C
  228. compiler in the DOS PATH= statement (eg.  PATH=c:\powerc).  If you specify
  229. a full path name to the compiler directory (including a drive prefix), then
  230. you will be able to execute your compiler from any drive or directory.
  231.  
  232. Read the discussion that follows regarding compiling and linking for your
  233. particular compiler.  After configuring the environment for your particular
  234. compiler, you should make a directory for storing your database programs,
  235. then change to that directory when working on your database programs.  For
  236. example, the following two commands will make a directory named db, then
  237. change directories so that db is the current directory.
  238.  
  239.     md \db
  240.     cd \db
  241.  
  242.  
  243. *******************   Compiling and Linking with Power C   *******************
  244.  
  245. The following discussion assumes that the database is installed in the
  246. directory named c:\c\database.  If not, you will need to substitute the
  247. appropriate directory name where this name appears below.  Assume that your
  248. C program is stored in a file named TEST.C.
  249.  
  250. Method 1 (Using a project file)
  251. -------------------------------
  252.  
  253. Create a project file named TEST.PRJ containing the following lines.
  254.  
  255.     test
  256.         pc /mm /ic:\c\database test
  257.     test.exe
  258.         pcl test;c:\c\database\isam.lib;c:\c\database\cbt.lib
  259.  
  260. Now you can compile and link the TEST.C program by simply typing:
  261.  
  262.     pc test
  263.  
  264.  
  265. Method 2 (Using the LIBNAMES environment variable)
  266. --------------------------------------------------
  267.  
  268. Create a batch file (eg.  DATABASE.BAT) containing the following lines:
  269.  
  270.     set pcoption=/ic:\c\database
  271.     set libnames=c:\c\database\isam*.lib;c:\c\database\cbt*.lib
  272.  
  273. The PCOPTION environment variable tells the compiler where to locate header
  274. files.  The LIBNAMES environment variable tells the linker to also search
  275. the ISAM.LIB and CBT.LIB database function libraries.  With the * present,
  276. the Power C linker searches ISAM.LIB and CBT.LIB for medium memory model,
  277. ISAMS.LIB and CBTS.LIB for small memory model, or ISAML.LIB and CBTL.LIB for
  278. large memory model.  However, the small and large memory model database
  279. libraries are not available unless you purchased the C/Database Library
  280. Source.
  281.  
  282. You should store this batch file in a directory that is listed in your
  283. PATH= statement so that it can be executed from any drive or directory.
  284. Before compiling, simply type the name of the batch file (eg.  DATABASE) to
  285. execute the two set commands.
  286.  
  287. Now you can compile and link the TEST.C program by simply typing the
  288. following:
  289.  
  290.     pc/e test
  291.  
  292. When you finish working on programs that use database functions, you won't
  293. want the linker to waste time searching the ISAM.LIB and CBT.LIB libraries.
  294. Therefore you may want to create another batch file (eg.  NORMAL.BAT) that
  295. sets the PCOPTION and LIBNAMES variables back to some normal state.  For
  296. example, you might want to set PCOPTION so that only the Power C directory
  297. is searched for include files, and you might want to set LIBNAMES so that
  298. no external libraries are searched as follows:
  299.  
  300.     set pcoption=/ic:\powerc
  301.     set libnames=
  302.  
  303.  
  304. *******************   Compiling and Linking with Turbo C   *******************
  305.  
  306. The following discussion assumes that the Turbo C compiler is installed in
  307. the directory named c:\tc and that the database is installed in the
  308. directory named c:\c\database.  It is further assumed that the Turbo C
  309. header files are in the directory named c:\tc\include and the Turbo C
  310. library and startup files are in the directory named c:\tc\lib.  If not,
  311. you will need to substitute the appropriate directory names where these
  312. names appear below.  Assume that your C program is stored in a file named
  313. TEST.C.
  314.  
  315. Method 1 (Using TCC.EXE)
  316. ------------------------
  317.  
  318. If you use the command-line compiler TCC.EXE, you should create a file
  319. named TURBOC.CFG containing the following lines:
  320.  
  321.         -mm
  322.         -Ic:\tc\include -Ic:\c\database
  323.         -Lc:\tc\lib -Lc:\c\database
  324.  
  325. The -mm option tells the compiler to use the medium memory model.  The -I
  326. options tell the compiler where to locate header files.  The -L options
  327. tell the compiler where to locate library files.  The TURBOC.CFG file may
  328. be stored in the Turbo C directory (eg.  c:\tc or c:\tc\bin), or optionally
  329. in the directory where you will be working on your database programs.  With
  330. TURBOC.CFG file present, the TEST.C program may be compiled and linked by
  331. typing the following:
  332.  
  333.     tcc test isam.lib cbt.lib
  334.  
  335.  
  336. Method 2 (Using TC.EXE)
  337. -----------------------
  338.  
  339. If you use the integrated environment TC.EXE, you should create a new
  340. configuration file named TCCONFIG.TC, which may be stored in the Turbo C
  341. directory, or optionally in the directory where you will be working on your
  342. database programs.
  343.  
  344. Type TC to execute the compiler.  Notice that the menu includes an item
  345. named Options.  This item allows you to set various compiler and linker
  346. options.  The Options menu is selected by pressing <Alt> O.  You can then
  347. select submenus by pressing one of the highlighted characters in the menu.
  348. Type the following key sequences to set the appropriate options:
  349.  
  350.     Set the memory model to medium:
  351.         <Alt> O  CMM <enter>                                 for Turbo C
  352.      or <Alt> O  CCM <enter>                                 for Turbo C++
  353.  
  354.     Add c:\c\database to the list of include directories:
  355.         <Alt> O  DI      c:\tc\include;c:\c\database <enter> for Turbo C
  356.      or <Alt> O  D       c:\tc\include;c:\c\database <enter> for Turbo C++
  357.  
  358.     Add c:\c\database to the list of library directories:
  359.         <Alt> O  DL      c:\tc\lib;c:\c\database <enter>     for Turbo C
  360.      or <Alt> O  D <tab> c:\tc\lib;c:\c\database <enter>     for Turbo C++
  361.  
  362.     Save the new options in TCCONFIG.TC:
  363.         <Alt> O  S       c:\tc\tcconfig.tc <enter>           for Turbo C
  364.      or <Alt> O  S                                           for Turbo C++
  365.  
  366. The only way to instruct the Turbo C environment to link external libraries
  367. is to specify the library names in a project file.  Therefore, you must
  368. create a project file for any program that needs to be linked with the
  369. database libraries.
  370.  
  371. For Turbo C:
  372. -----------
  373. Create create a text file named TEST.PRJ containing the following lines
  374. (where test is the name of your C program, and isam.lib & cbt.lib are the
  375. names of the two external libraries):
  376.  
  377.     test
  378.     isam.lib
  379.     cbt.lib
  380.  
  381. After creating the TEST.PRJ file, execute Turbo C by typing TC, then specify
  382. TEST.PRJ as the project file by typing the following key sequence:
  383.  
  384.     <Alt> P  P  test.prj
  385.  
  386. Now you can compile and link the TEST.C program by typing the following key
  387. sequence.
  388.  
  389.     <Alt> C  M
  390.  
  391.  
  392. For Turbo C++:
  393. -------------
  394. Execute Turbo C++ by typing TC, then type the following key sequences to
  395. create the TEST.PRJ project file:
  396.  
  397.     <Alt> P  O  test.prj <enter>
  398.     <Ins>       test.c <enter>
  399.                 isam.lib <enter>
  400.                 cbt.lib <enter> <Esc>
  401.  
  402. Now you can compile and link the TEST.C program by typing the following key
  403. sequence.
  404.  
  405.     <Alt> C  M
  406.  
  407.  
  408. *******************   Compiling and Linking with QuickC   *******************
  409.  
  410. The following discussion assumes that the QuickC compiler is installed in
  411. the directory named c:\qc and that the database is installed in the
  412. directory named c:\c\database.  It is further assumed that the QuickC
  413. header files are in the directory named c:\qc\include and the QuickC
  414. library files are in the directory named c:\qc\lib.  If not, you will need
  415. to substitute the appropriate directory names where these names appear
  416. below.  Assume that your C program is stored in a file named TEST.C.
  417.  
  418.  
  419. Method 1 (Using QCL.EXE)
  420. ------------------------
  421.  
  422. If you use the command-line compiler QCL.EXE, you should set the following
  423. environment variables:
  424.  
  425.         set include=c:\qc\include;c:\c\database
  426.         set lib=c:\qc\lib;c:\c\database
  427.  
  428. The INCLUDE variable lists the names of directories to search for include
  429. files.  The LIB variable lists the names of directories to search for
  430. library files.
  431.  
  432. The above two commands should be placed in a batch file (eg. DATABASE.BAT).
  433. Before compiling, simply type the name of the batch file (eg.  DATABASE) to
  434. execute the two set commands.
  435.  
  436. Now you can compile and link the TEST.C program by simply typing the
  437. following:
  438.  
  439.     qcl /AM test.c isam.lib cbt.lib
  440.  
  441. The /AM option is required to instruct the compiler to use the medium
  442. memory model.
  443.  
  444.  
  445. Method 2 (Using QC.EXE)
  446. -----------------------
  447.  
  448. If you use the integrated environment QC.EXE, you should create a new
  449. configuration file named QC.INI, which may be stored in the QuickC
  450. directory, or optionally in the directory where you will be working on
  451. your database programs.
  452.  
  453. Type QC to execute the compiler.  Notice that the menu includes an item
  454. named Options.  This item allows you to set various compiler and linker
  455. options.  The Options menu is selected by pressing <Alt> O.  You can then
  456. select submenus by pressing one of the highlighted characters in the menu.
  457. Type the following key sequences to set the appropriate options:
  458.  
  459.     Set the option for full menus (but only if not already set):
  460.         <Alt> O  F
  461.  
  462.     Set the memory model to medium (for version 2.0 or later only):
  463.         <Alt> O  MCM <enter> <tab> <tab> <enter>
  464.  
  465.     Add c:\c\database to the list of include and library directories:
  466.         <Alt> O  E  c:\qc\include;c:\c\database <tab>
  467.                   c:\qc\lib;c:\c\database <tab> <tab> <enter>
  468.  
  469. When you exit the QuickC environment, the QC.INI file will contain these
  470. changes.  If a QC.INI file already existed prior to typing QC, then the
  471. changes are stored in the existing QC.INI file, which may be in your QuickC
  472. directory.  Otherwise a new QC.INI file is created in the current
  473. directory.  Since the QC.INI file is automatically updated anytime you
  474. change an option, you may want to copy the new QC.INI file to the directory
  475. where you will be working on your database programs.
  476.  
  477. The only way to instruct the QuickC environment to link external libraries
  478. is to specify the library names in a program list.  Therefore, you must
  479. create a program list for any program that needs to be linked with the
  480. database libraries.
  481.  
  482. Assume that your C program is stored in the file named TEST.C.  Type QC to
  483. execute the QuickC compiler.  Then type the following key sequences to
  484. create a program list.
  485.  
  486.     Create a program list file named test.mak:
  487.         <Alt> M  S test <enter> Y
  488.  
  489.     Enter the names of the files that make up the program:
  490.         test.c <enter>
  491.         isam.lib <enter>
  492.         cbt.lib <enter>
  493.  
  494.     Save the program list in the file named test.mak:
  495.         <Alt> S
  496.  
  497. Now you can compile and link the TEST.C program by typing the following key
  498. sequence.
  499.  
  500.     <Alt> M  B
  501.  
  502.  
  503. ***************   Compiling and Linking with Microsoft C  ***************
  504.  
  505. Follow the instructions for QuickC, Method 1.  Substitute an appropriate
  506. directory name (eg.  \cl) everywhere \qc appears.  Also substitute the
  507. compiler name cl where qcl appears.
  508.  
  509. ************************************************************************
  510. ---------------   Storing binary data in an ISAM file    ---------------
  511. ************************************************************************
  512.  
  513. All of the fields in a data file are stored as strings.  A field can
  514. contain any arbitrary string of bytes, except the binary zero.  A binary
  515. zero indicates the end of the field.  Since no zero bytes can be stored
  516. within a field, we cannot store binary values directly.  Fortunately, it
  517. is easy to transform the value so that it can be stored.
  518.  
  519. The most obvious way to store numbers as a string is to use one of the C
  520. library functions (such as sprintf()) to convert it to ASCII or printable
  521. form.  This will work, but the resulting string usually takes quite a bit
  522. more space than the original binary value.  Conversion from binary to ASCII
  523. is also a relatively time consuming operation.
  524.  
  525. The string that we want to store is not restricted to only printable
  526. characters.  It can contain any byte value except zero.  So another way to
  527. store the number as a legal string is to simply remove the zeros.  One way
  528. to do this is to represent the zero bytes as an escape character followed
  529. by another character.  The functions in the object file named CVT_BTOS
  530. perform this type of transformation.  They efficiently convert binary
  531. values to strings or vice versa.
  532.  
  533. You can add the CVT_BTOS object file to the CBT library as follows:
  534.  
  535. Power C:
  536.         C:\C\DATABASE>merge cbt.lib cvt_btos
  537.  
  538. Turbo C:
  539.         C:\C\DATABASE>tlib cbt.lib + cvt_btos
  540.  
  541. QuickC:
  542.         C:\C\DATABASE>lib cbt.lib + cvt_btos;
  543.  
  544. Microsoft C:
  545.         C:\C\DATABASE>lib cbt.lib + cvt_btos;
  546.  
  547. The following example stores a person's age as an integer value
  548. and an account number as a double precision value.  The function
  549. cvt_itos() is used to convert an integer value to a string and the
  550. function cvt_stoi() is used to convert the string back into an integer.
  551. The function cvt_dtos() is used to convert a double precision value to
  552. a string and the function cvt_stod() is used to convert the string back
  553. into a double.
  554.  
  555.  
  556.       #include <stdio.h>
  557.       #include "isam.h"
  558.       #include "cvt_btos.h"
  559.  
  560.       char first[20], last[20], age[5], account[20];
  561.       char *record[5] = {first, last, age, account, NULL};
  562.       char *names[5] = {"first", "last", "age", "account", NULL};
  563.       char *lastname[2] = {"last", NULL};
  564.       char *fields[5];
  565.  
  566.       main() {
  567.          Db_Obj *age_db;
  568.          Index_Obj *age_index;
  569.          char buffer[50];
  570.  
  571.          if ((age_db = icreate_db("agedata", 0, names)) == NULL)
  572.             { puts("Error - could not create agedata"); exit(1); }
  573.          imkindex(age_db, "lastname", lastname);
  574.          age_index = ihandle(age_db, "lastname");
  575.          strcpy(first,"Joe");
  576.          strcpy(last,"Isuzu");
  577.          cvt_itos(40, age);
  578.          cvt_dtos(1000999.999, account);
  579.          if (iaddrec(age_db, NULL, record) == ERROR)
  580.             { puts("Error adding record"); exit(1); }
  581.          ifindhead(age_db, age_index);
  582.          if (igetrec(age_db, age_index, fields, buffer, sizeof(buffer)) == OK)
  583.                printf("Age of %s %s is %d, account = %.3f\n", fields[0],
  584.                fields[1], cvt_stoi(fields[2]), cvt_stod(fields[3]));
  585.          else printf("error reading record\n");
  586.       }
  587.  
  588. You can also store an arbitrary array of binary data as a field in the
  589. database using the functions: cvt_btos() and cvt_stob().  These functions
  590. work on a block of any size.  For example, you can store a structure with
  591. cvt_btos().
  592.  
  593.          struct st {
  594.             int value1;
  595.             double value2;
  596.             char c;
  597.             } stru;
  598.          char buffer[25];
  599.          cvt_btos(&stru, sizeof(stru), buffer);
  600.  
  601. When storing structures in a database, you should not attempt to save
  602. pointers.  The database will contain the value of the pointer but not the
  603. data pointed to.  When you read the data, the value of the pointer will no
  604. longer be valid.
  605.  
  606. The functions contained in the CVT_BTOS object file are:
  607.  
  608.       unsigned char *cvt_ctos(char value, char *string);
  609.             convert a character to a string
  610.  
  611.       unsigned char *cvt_itos(int value, char *string);
  612.             convert an int to a string
  613.  
  614.       unsigned char *cvt_ltos(long int value, char *string);
  615.             convert a long int to a string
  616.  
  617.       unsigned char *cvt_ftos(float value, char *string);
  618.             convert a float to a string
  619.  
  620.       unsigned char *cvt_dtos(double value, char *string);
  621.             convert a double to a string
  622.  
  623.       unsigned char *cvt_btos(void *value, int length, char *string);
  624.             convert a block of data (such as a structure) to a string
  625.  
  626.       unsigned char cvt_stoc(char *string);
  627.             convert a string to a character
  628.  
  629.       int cvt_stoi(char *string);
  630.             convert a string to an int
  631.  
  632.       long cvt_stol(char *string);
  633.             convert a string to a long int
  634.  
  635.       float cvt_stof(char *string);
  636.             convert a string to a float
  637.  
  638.       double cvt_stod(char *string);
  639.             convert a string to a double
  640.  
  641.       void *cvt_stob(char *string, void *result);
  642.             convert a string to a block of data
  643.  
  644. Source to these conversion functions is in the file "cvt_btos.c" in the
  645. TOOLS sub-directory.  You can create a new medium memory model object file
  646. as follows:
  647.  
  648. Power C:
  649.         C:\C\DATABASE\TOOLS>pc /mm cvt_btos
  650.  
  651. Turbo C:
  652.         C:\C\DATABASE\TOOLS>tcc -mm -c cvt_btos
  653.  
  654. QuickC:
  655.         C:\C\DATABASE\TOOLS>qcl /AM /c cvt_btos.c
  656.  
  657. Microsoft C:
  658.         C:\C\DATABASE\TOOLS>cl /AM /c cvt_btos.c
  659.  
  660.  
  661. ************************************************************************
  662. -----------------------   Indexing using numbers -----------------------
  663. ************************************************************************
  664.  
  665. When indexes are created, the fields are compared as strings.  If you want
  666. to index on the value of a number, you should store the number in the
  667. database as a fixed length string.  If int and long int values are stored
  668. in printable form and fixed width, the comparison will give the expected
  669. result.  Float and double values should also be stored as fixed width using
  670. either fixed point or exponential notation.  For example:
  671.  
  672.          itoa(9,buffer,10) gives "9"
  673.          itoa(10,buffer,10) gives "10"
  674.             "10" is less than "9"
  675.  
  676.          sprintf(buffer,"%5d",9) gives  "    9"
  677.          sprintf(buffer,"%5d",10) gives "   10"
  678.             "    9" is less than "   10"
  679.  
  680. ************************************************************************
  681. ---------------------   New features of LDM        ---------------------
  682. ************************************************************************
  683.  
  684. 1. When editing a record or entering data in any form, you can use
  685.    ctrl/enter (hold the control key down and press the enter key) or
  686.    ctrl/j to accept the form.  Previously, you had to move to the
  687.    last field and press enter.
  688.  
  689. 2. LDM has a new command: Remove Index.  This will remove an index
  690.    from an isam file.
  691.  
  692.  
  693.                         --  end of file --
  694.