What's the best way to pass a "row of data" from one C# console app to another C# console app? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:21:41Z http://stackoverflow.com/feeds/question/176569 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/176569/whats-the-best-way-to-pass-a-row-of-data-from-one-c-console-app-to-another-c 3 What's the best way to pass a "row of data" from one C# console app to another C# console app? MrDatabase 2008-10-06T23:06:36Z 2008-10-06T23:14:29Z <p>I have a C# console app "App1" that reads a row of data from a table in a SQL Server 2005 DB. I want App1 to pass all the data in this row to App2, another C# console app. What is the best way to do this?</p> <p>My first (naive) attempt was to do this:</p> <pre><code>object[] o = myrow.ItemArray; // make a string that separates each item by a space... for example "1 2 myVar". // pass this string to App2 via command line. </code></pre> <p>This has some flaws: what if one of the entries in the row was "my var" instead of "myVar"? Also, the order of the items would be hardcoded in the receiving app (App2).</p> <p>So what's the best way to do this? Would it be appropriate to pass an xml string to App2 via command line?</p> <p>Cheers!</p> http://stackoverflow.com/questions/176569/whats-the-best-way-to-pass-a-row-of-data-from-one-c-console-app-to-another-c/176595#176595 1 Answer by Marc Gravell for What's the best way to pass a "row of data" from one C# console app to another C# console app? Marc Gravell 2008-10-06T23:12:20Z 2008-10-06T23:12:20Z <p>The space-separated approach is fine if you are using Process.Start - you just need to wrap items containing spaces with quotes - same as at the command line: cd "c:\program files"</p> <p>If the data is more complex than a few values, then IPC approaches such as remoting, sockets, WCF, etc might help. Or simpler: write the data (perhaps as xml) to a file, and have the second app load the data from the file.</p> http://stackoverflow.com/questions/176569/whats-the-best-way-to-pass-a-row-of-data-from-one-c-console-app-to-another-c/176601#176601 3 Answer by Matt Hamilton for What's the best way to pass a "row of data" from one C# console app to another C# console app? Matt Hamilton 2008-10-06T23:13:22Z 2008-10-06T23:13:22Z <p>One approach would be to serialize the row to XML and use that, except that DataRow (lacking a default constructor) can't be serialized. Instead you'd have to create a new DataTable and add that row to it.</p> <p>Then you could simply serialize the entire DataTable to XML and pass it to the other application, either as a command-line argument or by saving the XML to a file and passing the filename.</p> <p>Serializing a DataTable to XML is quite trivial thanks to the <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx" rel="nofollow">DataTable.WriteXml</a> method.</p> http://stackoverflow.com/questions/176569/whats-the-best-way-to-pass-a-row-of-data-from-one-c-console-app-to-another-c/176607#176607 1 Answer by tbreffni for What's the best way to pass a "row of data" from one C# console app to another C# console app? tbreffni 2008-10-06T23:14:29Z 2008-10-06T23:14:29Z <p>You could use a serialized DataSet to easily get the data from one place to another without having to write a lot of custom code, as the default DataSet already provides the necessary methods ( .WriteXML for example will serialize the DataSet to XML and write to a file). Your other application could then poll the appropriate directory for new files.</p>