What are the differences or advantages of using a binary file vs XML with TClientDataSet? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:50:58Z http://stackoverflow.com/feeds/question/455817 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient 4 What are the differences or advantages of using a binary file vs XML with TClientDataSet? Bill 2009-01-18T20:18:18Z 2009-02-20T21:19:29Z <p>Is there any difference or advantages using binary a file or XML file with TClientDataSet.</p> http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient/455950#455950 1 Answer by Tim Jarvis for What are the differences or advantages of using a binary file vs XML with TClientDataSet? Tim Jarvis 2009-01-18T21:42:23Z 2009-01-18T21:42:23Z <p>The Binary file will be a little smaller.</p> <p>The main advantage of the XML format is that you can pass it around via http(s) protocols. </p> http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient/456123#456123 6 Answer by Nick Hodges for What are the differences or advantages of using a binary file vs XML with TClientDataSet? Nick Hodges 2009-01-18T23:30:00Z 2009-01-18T23:30:00Z <p>Binary will be smaller and faster.</p> <p>XML will be more portable and human readable.</p> http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient/456809#456809 0 Answer by dummzeuch for What are the differences or advantages of using a binary file vs XML with TClientDataSet? dummzeuch 2009-01-19T07:40:37Z 2009-01-19T07:40:37Z <p>Without having tested it: I guess the binary format would be quite a lot faster when reading and writing. You'd better do your own benchmarks for that, though.</p> <p>Another advantage of binary might be, that it cannot be easily edited which prevents people from mucking up the data outside the application.</p> http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient/459003#459003 1 Answer by Jeroen Pluimers for What are the differences or advantages of using a binary file vs XML with TClientDataSet? Jeroen Pluimers 2009-01-19T20:12:14Z 2009-01-19T20:12:14Z <p>Binary is smaller and faster, but only readable by TClientDataSets.</p> <p>XML is larger and slower (both are not that bad, i.e. not by orders of magnitude bigger or slower). XML is readable by people (not recommended in general, but it <em>is</em> doable), and software. Therefore it is more portable (as Nick wrote).</p> <p>TClientDataSets can load and save their own style of XML, or you can use the Delphi XML Mapper tool to read and write any kind of XML.</p> <p>XSLT can for instance be used to transform those XML files into any kind of text, including other XML, HTML, CSV, fixed columns, etc.</p> <p>In contrast to what Tim indicates, both binary and XML can be transferred through HTTP and HTTPS. However, it is often appreciated sending XML as it is easier to trace.</p> http://stackoverflow.com/questions/455817/what-are-the-differences-or-advantages-of-using-a-binary-file-vs-xml-with-tclient/571270#571270 0 Answer by Jordan for What are the differences or advantages of using a binary file vs XML with TClientDataSet? Jordan 2009-02-20T21:19:29Z 2009-02-20T21:19:29Z <p>When using Delphi 2009, we have noticed that if the file has an extension of .XML, it will not save in binary format over an existing dfXMLUTF8 format, even with a LoadFromFile, SaveToFile. Changing the file extension to something else (.DAT, for example) allows saving the file in dfBinary. Our experience is that the binary file, in addition to being somewhat more difficult for the end-user to manipulate (a plus!), is approximately 50% smaller than the dfXMLUTF8 format file.</p>