Add:
Syntax:
add name
Where: name is the name of the table.
Program Example:
{This examle requres database example which has the following table: MEMBER}
{MEMBER has the following data types: NAME,SURNAME,AGE and SEX}
{NAME and SURNAME are both text with a width of 20 characters,}
{AGE is a number and SEX is a single character.}
database example;
example.member.name$="John";
example.member.surname$="Blogs";
example.member.age%=45;
example.member.sex$="M";
add member
Program File
Application File
Database File
Return
Last Updated: July 1998.