[Home] [By Thread] [By Date] [Recent Entries]

  • To: <xml-dev@l...>
  • Subject: MSXML DOM Performance?
  • From: "Ali Asghar Safri" <Asafri@i...>
  • Date: Thu, 28 Nov 2002 11:19:04 +0500
  • Thread-index: AcKWpgxWMdPWFGihS5e+GVdDOcvxZg==
  • Thread-topic: MSXML DOM Performance?

Hi,
	Is it more optimal to keep a huge document loaded in the memory,
and pass the reference of the MSXMLDOM object in the called functions or
reload the document again and again in each of the called function.

what I mean is 
=========
Starategy1
=========
func a (sXML as string) 
      dim obj
      Set obj = CreateObject("MSXML2.DOMDocument")
      obj.loadXML = sXML 	

      B(obj)

end function 


func B(obj as DOMDocument)


end function 


===========
Strategy2
===========

func a (sXML as string) 
      dim obj
      Set obj = CreateObject("MSXML2.DOMDocument")
      obj.loadXML = sXML 	

      B(obj.xml)

end function 


func B(rsXML)
      dim obj 
      Set obj = CreateObject("MSXML2.DOMDocument")
      obj.loadXML = rsXML 
end function 


Thanx in Advance.



______________________
Ali Asghar Safri,
Software Engineer,
ITIM Associates (Pvt) Ltd.
______________________



Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member