This tutorial is a basic walkthrough of the Swiftappj SQL Form Designer which is part of the swiftappj distribution.
NOTE:in the rest of this tutorial , the Swiftappj SQL Form Designer will be referred to as "FORM DESIGNER"The SQL Form Designer can be used for generating data-entry forms as well as associated code for SQL table maintenance application.
SET CLASSPATH=..;.;c:\jdk1.3\jre\lib\rt.jar;c:\jars\mysql_uncomp.jar;c:\jars\swiftappj.jar;c:\jars\dg_code.jar
java com.wicolor.form.form [design_file ] where design_file is a filename with an extension of ".tbl" Note: design file is optional, the program has a save As menu choice to save the file later.
NOTE:filenames may be specified as relative paths such as ../../form1.tbl or full pathnames such as c:/test/form1.tbl note always use forward shashes "/" instead of backslashes "\"
For this tutorial, we will assume the following:
jdbc:mysql://localhost:3306/test
CREATE TABLE dcust_mast ( DCMST_NUM char(3) NOT NULL default '', DCMST_NAME char(30) default NULL, DCMST_ADRS char(30) default NULL, DCMST_CITY char(20) default NULL, DCMST_STATE char(2) default NULL, DCMST_ZIP char(10) default NULL, DCMST_REGION char(4) NOT NULL default '0000', DCMST_CREATED datetime default NULL, DCMST_TIME timestamp(14) NOT NULL, DCMST_WHO char(20) default NULL, DCMST_CLASS char(3) default 'USA', PRIMARY KEY (DCMST_NUM) ) TYPE=ISAM PACK_KEYS=1NOTE: Several types of SQL fields are understood by the FORM DESIGNER
This was done since MySQL does not have a boolean data type.
Connect to the database as follows:
NOTE:code generated by the form only uses the selected SQL table fields; it is possible to add code to use added fields.
It is possible for overlapping components , especially boxes and labels, to become difficult to select on the design panel. There are two workarounds for this:
The currently set increment displays in the "amount" field near the middle of each set of conteols
NOTE:as shown below, the label automatically sizes itself for the text; all that is
needed is to move it into position.
accept dates in the format NOV,12 2001 no other formats are available
accept values in the format: 01:00 AM 02:00 PM no other formats are available
The following steps are needed to generate a .java source file from the FORM DESIGNER:
NOTE:Even if you save your design file , the FORM DESIGNER will prompt you to save it
again when you exit the program.
c:/test/test.tbl NOTE: use forward slashes / in the path specification
In this example the SQL table has a Primary key; if not type the characters "PRI" into the "KEY" column of the db_view panel.
Behavior is as follows:
NOTE: This is done to allow multiple tables to be used in a form , but only one to be edited. This step is needed even if only a single table is used
NOTE: Do not modify the generated code!!!