[
Lists Home |
Date Index |
Thread Index
]
- To: <xml-dev@lists.xml.org>
- Subject: MSXML DOM Performance?
- From: "Ali Asghar Safri" <Asafri@itimpk.com>
- 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.
______________________
|