Skip to content

tosha63/Acquaintance_XML

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Acquaintance_XML

TaskOne

Based on request SELECT ID_ART,NAME,CODE,USERNAME,GUID FROM WHS.ARTICLE where rownum < 10000 Generate view XML:

<articles>
<articles id_art="104880" name="Rolled long loaf 0.4kg" code="1010050114" username="WHS" guid="6992B998083711DC87F900093D12899D">
...
</articles>

TaskTwo

Write an XSLT transformation that will bring the xml obtained in the previous task to the form:

<articles>
<article>
<id_art>104880</id_art>
<name>Sliced long loaf 0.4kg</name>
<code>1010050114</code>
<username>WHS<username>
<guid>6992B998083711DC87F900093D12899D<guid>
<article>
...
<articles>

TaskThree

Write a program that from the xml received from the previous task after conversion will form a CSV file of the form ID_ART,NAME,CODE,USERNAME,GUID 104880,Батон нарезной в/с 0.4кг,1010050114,WHS,6992B998083711DC87F900093D12899D

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published