home *** CD-ROM | disk | FTP | other *** search
/ Windows NT Super Tune-Up Kit / PIE-WindowsNTSuperTuneUpKit-1997.iso / CONVERTR / CREA_DB / CREATE11.DOC < prev    next >
Text File  |  1987-12-21  |  4KB  |  272 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                              CREATE
  10.            A dBase III+ (tm) DBF File Creation Utility
  11.                                by
  12.                         Douglas E. Welch
  13.  
  14.                         (C) December 1987
  15.  
  16.  
  17.                      14539 Albers Street #2
  18.                        Van Nuys, CA 91411
  19.  
  20.                           BIX : DWELCH
  21.                         GENIE : DEWELCH
  22.                           CIS : 76625,3301
  23.                  Glendale Litera (818) 956-6164
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.                                     1
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. Note:
  72.  
  73. There are no fancy disclaimers on this program. This program is 
  74. released into the PUBLIC DOMAIN. Please do not sell it or rip it 
  75. off as your own. 
  76.  
  77. o Do NOT sell or alter the program in any way.
  78. o Maintain this copyright notice at all times.
  79. o Distribute only with all docs and code in a single ARC file.
  80.  
  81. If you feel that this program assists you in your work then 
  82. please feel free to send a $5.00 donation to the address listed 
  83. on the front cover of this document. If a commercial application 
  84. is desired then please contact me at the addresses listed above.
  85.  
  86. I cannot guarantee that this program will work under all 
  87. circumstances but I would like to hear of any bugs or added 
  88. functions that you might want. I cannot be held responsible for 
  89. any damage or los of data caused by this program.
  90.  
  91. Douglas E. Welch
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.                                     2
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137. CREATE 1.0 Documentation
  138. (C) Copyright Douglas E. Welch
  139.  
  140. Introduction to Create
  141.  
  142. This CREATE utility was developed using Borland's Turbo Basic 
  143. BASIC Compiler. It was developed to allow programmers to create 
  144. dBase III+ (tm)/ Foxbase+ (tm) DBF files without actually having 
  145. a full version of these programs. This allows the programmers to 
  146. deliver their applications as a runtime application without 
  147. having to provide every database that will be needed. The 
  148. program utilizes a data input file created by the programmer 
  149. which takes up much less space than a series of individual DBF 
  150. files.
  151.  
  152.  
  153. Usage Summary
  154.  
  155. - Enter CREATE at the DOS prompt
  156. - Enter CREATE <filename> to bypass the Input File : prompt
  157.  
  158.  
  159. Installation
  160.  
  161. CREATE requires no installation. It should operate correctly on 
  162. most PC's or PC clones.
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.                                     3
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203. Data File Format
  204.  
  205. The data file format is straight-forward. It contains the 
  206. information usually contained in a DBF file. The data file can 
  207. contain definitions for several DBF files. This would allow all 
  208. the databases for a given application to be contained within one 
  209. text file. There is no required filename for the definition 
  210. file. This allows the programmer to give the definition file a 
  211. name which relates to their application.
  212.  
  213. The MEMO Field is included to allow the proper creation of databases
  214. which have memo fields.  It also creates the .DBT file needed to 
  215. hold the MEMO data.
  216.  
  217. The file should be created with any ASCII word processor or 
  218. Wordstar in the Non-document mode.
  219.  
  220. Name of Database to be created
  221. Memo Fields Used (Y/N)
  222. Total Character Count of DBF File
  223. Number of Fields in DBF File
  224. Field Name, Field Type, Field Width, Decimal Number
  225. etc... (continue other definitions here.)
  226.  
  227. Note: All field definition lines should contain 3 commas, even if 
  228. the last item is blank.
  229.  
  230.  
  231.  
  232. Example Definition File
  233. -----------------------
  234. TEST1.DBF
  235. N
  236. 82
  237. 5
  238. NAME,C,25,
  239. ADDRESS,C,25,
  240. CITY,C,20,
  241. STATE,C,2,
  242. ZIP,C,10,
  243. TEST2.DBF
  244. N
  245. 41
  246. 4
  247. FIELD1,C,10,
  248. FIELD2,N,5,2
  249. FIELD3,L,1,
  250. FIELD4,C,25,
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.                                     4
  267.  
  268.  
  269.  
  270.  
  271.  
  272.