Interactive SQL (dbisql) is a utility for entering SQL statements.
If you use Interactive SQL to work with your database schema, instead of executing the SQL statements one at a time, build up the set of commands in a dbisql command file. Then you can execute this file in dbisql to build the database.
The definitions of the database objects form the database schema. You can think of the schema as an empty database. The SQL statements for creating and modifying schemas are called the data definition language (DDL).
If you use a tool other than Interactive SQL, all the information in these topics concerning SQL statements still applies.
An Interactive SQL command file is a text file with semicolons placed at the end of commands as shown below.
CREATE TABLE t1 ( .. ); CREATE TABLE t2 ( .. ); CREATE LF INDEX i2 ON t2 ( .. ); ..
read makedbreads the Interactive SQL commands in the file makedb.sql.