How to Create a Table that Has Many Fields of Identical SizeLast reviewed: November 16, 1995Article ID: Q139527 |
The information in this article applies to:
SUMMARYCreating tables that contain many fields can be time consuming, especially if all the fields have the same type and size. With a few lines of code, the table can be created easily.
MORE INFORMATIONThe following program creates a table called newtable that has 200 fields, each defined as a character field of size 20:
lnTblstr="(" FOR lnI=1 to 200 lnTblstr=lnTblstr+"FLD"+ALLTRIM(STR(lnI))+" C(20)," ENDFOR lnTblstr=STUFF(lnTblstr,LEN(lnTblstr),1,")") CREATE TABLE newtable FREE &lnTblstr |
Additional reference words: 3.00 VFoxWin kbhowto
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |