Dev/DBMS

xml -> sql

newtype 2003. 8. 29. 23:42
xml를 ms-sql에 집어넣고 싶내..
일단 xml내용은 xml_order와 xml_resp라는 두 군데 들어있따네..

<a id="xmlReq" href="showReqXML()">Show Request XML</a>
            <div id="xmlReqData" style="display: 'none'">
                    <%

                    Response.Write("<textarea cols=60 readonly rows=20>" & xml_order & "</textarea>")
                    %>
            </div>               <br>
            <a id="xmlRes" href="showResXML()">Show Response XML</a>
            <div id="xmlResData" style="display: 'none'">
                    <%
                    Dim dbgXML
                    dbgXML = Replace(xml_resp,"><",">" & Chr(10) & "<")
                    dbxXml = Replace(dbgXml, ">" & Chr(10) & "</","></")
                    Response.Write("<textarea  cols=70 readonly rows=14 wrap=off >" & dbgXML & "</textarea>")
               
            %>
            </div>
이렇게하면 각각 xml로 뿌려주네..
그러나..내가원하는건 xml이 아니네

xml_order의 내용은 ms-sql에 집어넣고 xml_resp의 요소중에  r_approved라는 요소를 끄집어 내어 비교하고 싶네..가능한가?

안가능해도 가능하게 해주게..
캬캬...연삼일째 질문답에서 사는구만 ㅡㅡ;;
반응형