Conventions for ij examples

Examples in this document show input from the keyboard or a file in bold text and console output from the DOS prompt or the ij application in regular text. C:\> REM This example is from a DOS prompt: C:\> java -Dij.protocol=jdbc:derby: org.apache.derby.tools.ij ij version 10.1 ij> connect 'menuDB;create=true'; ij> CREATE TABLE menu(course CHAR(10), item CHAR(20), price INTEGER); 0 rows inserted/updated/deleted ij> disconnect; ij> exit; C:\>