• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

XML seems pretty pwnage.

Vertimus

Banned
You know what I think?

Add C++ style pointers to XML and you can pretty much represent any data structure there is out there, Linked Lists, Binary Search Trees, etc.


Has this been done before?
 
I'm only 16, and I've never actrually did anything with XML before. It'd be really awesome to actrually export data from a program real-time that is universally accepted.

 
I think every data storage standard should be contained in XML or 100% exportable and importable to XML. However, without pointers, it's not very practical.

So I'm wondering, has pointers in XML actrually been standardized?
 
Originally posted by: Vertimus
I think every data storage standard should be contained in XML or 100% exportable and importable to XML. However, without pointers, it's not very practical.

So I'm wondering, has pointers in XML actrually been standardized?

IDK too much about all the pointers, I know you can do just about anything with XML though.
 
idrefs in SOAP for tree and graph structures.

XML is still lousy for active database storage though, as opposed to data interchange and transformation.

.. because binary is much more efficient, and tables can use a fixed number of bytes per row making seeks and row updates easier and faster.
 
Back
Top