|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Attribute Oriented VS Sub-Element Oriented XML Documents
Which type of XML documents are faster to parse?
Attribute Centric : <Sales> <Invoice Number="1" Customer="1098" Date = "20/9/2004" </Invoice> <Invoice Number="2" Customer="1099" Date = "20/9/2004" </Invoice> </Sales> OR Element Centric : <Sales> <Invoice> <Number>1</Number> <Customer>1098</Customer> <Date>20/9/2004</Date> </Invoice> <Invoice> <Number>2</Number> <Customer>1099</Customer> <Date>20/9/2004</Date> </Invoice> </Sales> |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > Attribute Centric VS Element Centric Mapping |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|