samples/gen_addr_sql.ysl2
changeset 57 2f4ad3800a3f
equal deleted inserted replaced
56:d48cf08cf448 57:2f4ad3800a3f
       
     1 include yslt.yml2
       
     2 
       
     3 tstylesheet {
       
     4     template "/list" {
       
     5         apply "address", 0;
       
     6         | 1000 FOR I=1 TO 2 STEP 1
       
     7         | 1010 READ NAME$, STREET$, VILLAGE$
       
     8         | 1020 PRINT "INSERT INTO address (name, street, village) VALUES ('" + NAME$ + "', '" + STREET$ + "', '" + VILLAGE$ + "');"
       
     9         | 1030 NEXT I
       
    10     }
       
    11     template "address" {
       
    12         | «position() * 10 + 100» DATA "«name»", "«street»", "«village»"
       
    13     }
       
    14 }
       
    15