The sample definition file of sticker is stored in this directory. 
Please learn the writing of the definition file of sticker by understanding each sample in this directory. 


It is necessary to prepare table employee_table in arbitrary relational database to execute the sample. 
Please refer to the following SQL for standard DDL of employee_table. 

cleate table employee_table(
    emp_no integer not null primary key,
    name varchar(10) not null,
    division_cd integer not null,
    sex varchar(5) not null,
    deleted boolean not null);


*** content of each sample ***

sample1.xml
  ... The CSV file is read, and the import is done to employee_table of 
      RDB. 
      There are UTF8 and an item header, and the CSV file is read as a 
      form it is the character string quart ("). Moreover, the result 
      of processing (success or failure) is notified with mail. 

sample2.xml
  ... Sex exports woman's data from employee_table of RDB as CSV file. 
      Moreover, the result of processing (success or failure) is output 
      as a debugging log. 

sample3.xml
  ... Two data bases to be connected are defined, and data is 
      transmitted from one of RDB to the other RDB. 
      Please achieve forwarding in sticker according to the following 
      procedures when processing it like this. 
          1. A virtual table of the same definition as a forwarding 
             destination or a forwarding former table is defined in data 
             base (hsqldb) in sticker. 
          2. It connects with the data base of the forwarding origin, and 
             it exports to the table of hsqldb. 
          3. It connects with the data base of the forwarding 
             destination, and the import does data from the table of 
             hsqldb to the table at the forwarding destination. 

sample4.xml
  ... Data is exported from RDB to data base (hsqldb) of the local, the data 
      of hsqldb is updated, and data is exported as CSV at the end. 

sample5.xml
  ... Processing is mounted repeatedly by the use of the <cursor> and the <for>. 

Please enjoy your working by effectively using sticker! 
 ----------------------------------- Copyright (c)2007 Y.Murakamin 