active questions tagged dataset - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:59:27Zhttp://stackoverflow.com/feeds/tag/datasethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827841/asp-net-compile-time-xml-dataset-checks0ASP.net Compile time XML/dataset checksChris2009-12-01T18:01:37Z2009-12-01T20:08:44Z
<p>I would like an automated way to run compile time checks on datasets (or any xml) to make sure that expected values are found for certain properties. I have a fairly complex dataset in my asp.net Web Site. After modifying a query Visual Studio regenerates the tableadapter object and returns many properties to their default values. This isn't a problem during initial development because I know what the values need to be set to but this will not be the case during future maintenance. An example:</p>
<ul>
<li>A query that performs an insert and then selects SCOPE_IDENTITY needs the ExecuteMode property to be set to Scalar; not Reader or NonQuery.
</li>
</ul>
<p>I would like the build process to fail if this property is set to anything but Scalar. The relevant xml path in the xsd is:</p>
<pre><code><xs:schema>
<xs:annotation>
<xs:appinfo>
<DataSource>
<Tables>
<TableAdapter Name="TheTable">
<Sources>
<DbSource QueryType="Scalar">
</code></pre>
http://stackoverflow.com/questions/1821329/defining-xml-fields-to-be-displayed-in-a-datagrid-through-a-dataset0Defining XML fields to be displayed in a datagrid through a datasetMarceloRamires2009-11-30T17:56:00Z2009-12-01T17:52:43Z
<p>The following code:</p>
<pre><code>DataSet ds = new DataSet;
ds.ReadXml("c:\output\" + nome);
GridView1.DataSource = ds;
GridView1.DataBind();
</code></pre>
<p>succeeds in getting the fields from the XML, but as default it only displays the three first fields
(this XML specially may have about 60 fields, of which i wish to gather 3 or 4 of them)</p>
<p>how do i take off these fields and choose the fields that i want?</p>
<p>facts:<br>
i know the names of the fields<br>
i have unlimited space for the xml datagrid display<br>
i don't need links or anything, just normal display of data<br>
i'd like to know aso if there's a way of loading more than one xml into a datagrid (several rows)<br>
answer either in c# or vb.net.. there's no problem </p>
http://stackoverflow.com/questions/1827281/how-to-create-and-manage-several-datasets0How to create and manage several datasetsMarceloRamires2009-12-01T16:25:49Z2009-12-01T17:03:30Z
<p>What is the best way for me to have several datasets ?</p>
<p>i've thought about creating a routine for creating datasets with a number in their names, each one with the desired data, but that's not very intelligent (although might work)</p>
<p>i'd like to create what would be like an "ARRAY OF DATASETS"<br>
vb:</p>
<pre><code><whatever> = ds(1).<whatever>
<whatever> = ds(2).<whatever>
...
...
</code></pre>
<p>and beign able to see how many datasets i have in this "array" would be desirable.</p>
<p>any answer in c# or vb.net is welcome! (although i'm developing in vb.net)</p>
<p>i've tried doing it like an array</p>
<pre><code> Dim dinfo As DirectoryInfo = New DirectoryInfo("c:\")
Dim finfo As FileInfo() = dinfo.GetFiles("*.xml")
Dim ds() As DataSet = Nothing
For a = 0 To finfo.GetLength(0) Step 1
ds(a).ReadXml("c:\" + finfo(a).Name)
Next
</code></pre>
<p>and i get</p>
<pre><code>***Object reference not set to an instance of an object.***
</code></pre>
<p>so i assume it just isn't like this.</p>
<p>(obs, i've done the same code loading one XML to one dataset and it works perfectly, i've gone back and forth more than one time to assure that it isn't just a logical mistake, it's syntax and lack of programming knowlegde.. haha)</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/913228/should-i-dispose-dataset-and-datatable12Should I Dispose() DataSet and DataTable?mbeckish2009-05-26T23:08:09Z2009-12-01T16:24:00Z
<p>DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.</p>
<p>However, from what I've read so far, DataSet and DataTable don't actually have any unmanaged resources, so Dispose() doesn't actually do much.</p>
<p>Plus, I can't just use <code>using(DataSet myDataSet...)</code> because DataSet has a collection of DataTables.</p>
<p>So, to be safe, I'd need to iterate through myDataSet.Tables, dispose of each of the DataTables, then dispose of the DataSet.</p>
<p>So, is it worth the hassle to call Dispose() on all of my DataSets and DataTables?</p>
<p><strong>Addendum:</strong></p>
<p>For those of you who think that DataSet should be disposed:
In general, the pattern for disposing is to use <code>using</code> or <code>try..finally</code>, because you want to guarantee that Dispose() will be called.</p>
<p>However, this gets ugly real fast for a collection. For example, what do you do if one of the calls to Dispose() thrown an exception? Do you swallow it (which is "bad") so that you can continue on to dispose the next element?</p>
<p>Or, do you suggest that I just call myDataSet.Dispose(), and forget about disposing the DataTables in myDataSet.Tables? </p>
http://stackoverflow.com/questions/1821735/putting-dataset-fields-in-textboxes0Putting dataset fields in textboxesMarceloRamires2009-11-30T19:04:06Z2009-11-30T21:00:22Z
<p>i have loaded an xml file to a dataset successfully (i can display it in a datagrid), i'd like to load it in several textboxes (about 10 or 12). </p>
<p>the xml has about 60 fields, and i'm not that familiar with getting their names (though i know which ones i want). </p>
<p>that's what i have: </p>
<pre><code>Dim ds As New DataSet
ds.ReadXml(<PATH>)
</code></pre>
<p>a glimpse of one part of the xml:</p>
<pre><code><ide>
<cUF>35</cUF>
<cNF>623670848</cNF>
</ide>
<emit>
<CNPJ>06949571000153</CNPJ>
<xFant>TSA</xFant>
</code></pre>
<p>i want (example)<br>
cUF from IDE<br>
cFant from tsa </p>
<p>i've got txt1 and txt2 as textboxes, what do i do to get those?</p>
http://stackoverflow.com/questions/1820741/parameterize-the-schema-in-a-strongly-typed-ado-net-tableadapter0Parameterize the schema in a strongly-typed ADO.NET TableAdapterJeffrey Cameron2009-11-30T16:10:51Z2009-11-30T20:22:07Z
<p>Hey all,</p>
<p>I'm trying to build a strongly-typed dataset in ADO.Net and am having a little trouble with one aspect of the TableAdapters.</p>
<p>My query looks like</p>
<pre><code>SELECT *
FROM testdict.ModuleVariable
WHERE Module = ?
</code></pre>
<p>My problem revolves around the testdict part. We use several different schemas to access our data (because of a multiplexed Sybase IQ instance). How can I parameterize the schema portion of this query?</p>
<p>I've tried:</p>
<pre><code>SELECT *
FROM ?.ModuleVariable
WHERE Module = ?
</code></pre>
<p>but to no avail. My current mindset is that I may have to inherit the TableAdapter and parameterize the schema manually but I am hoping there is a nicer solution!</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1798618/how-do-i-generate-quasi-random-statistical-data-sets0How do I generate quasi-random statistical data sets?Jason Baker2009-11-25T17:33:24Z2009-11-30T09:28:23Z
<p>I'm looking for a tool that will let me generate a data set with certain statistical properties. For example, suppose I want to generate 1 million integers with x number of outliers for use in testing.</p>
<p>Are there any tools for generating test data sets like this? I don't necessarily need anything fancy, just some basic functionality.</p>
http://stackoverflow.com/questions/1818578/fill-typed-dataset-by-accessing-columns-directly0fill typed dataset by accessing columns directly?snarebold2009-11-30T08:51:14Z2009-11-30T09:17:46Z
<p>hi</p>
<p>I thought I can fill a typed dataset , which I created like this:</p>
<p>The name of the table is HouseInformation</p>
<p>In design mode I created a column NameOfHouse and Price.</p>
<p>Is it not possible to fill the columns directly? like...</p>
<pre><code>dsWincObjects dsHouse = new dsWincObjects();
dsHouse.NameOfHouse = "value";
</code></pre>
<p>and and...</p>
<p>or option I thought...to instatiate the column</p>
<pre><code>dsWincObjects.HouseInformationDataTable dtHouse = new dsWincObjects.HouseInformationDataTable();
</code></pre>
<p>Not Possible to acces directly the columns? and give my values to fill?</p>
<pre><code>dtHouse.NameOfHouse = "value";....
</code></pre>
<p>Thanks</p>
<p>// edit</p>
<pre><code>dsWincObjects dsMieter = new dsWincObjects();
dsWincObjects.MieterInformationDataTable dtMieter = new dsWincObjects.MieterInformationDataTable();
dsWincObjects.MieterInformationRow newRow = dtMieter.NewMieterInformationRow();
newRow.FullName = "test";
dsMieter.MieterInformation.AddMieterInformationRow(newRow);
</code></pre>
http://stackoverflow.com/questions/1815671/new-net-3-5-project-which-dal-technology-to-use3New .NET 3.5 Project: Which DAL technology to use?Kave2009-11-29T14:27:39Z2009-11-29T15:29:13Z
<p>Hello,</p>
<p>I am preparing a new Windows project and wonder what kind of DAL technology to use. Originally I was looking for something simpler to not spending too much time on building it. But I understand also that it has to be efficient and scalable in the long run.</p>
<p>I plan to use WPF (MVVM) Client and WCF Service on a 3 Tier system.</p>
<p>Just to sum up all the existing technologies I am familiar with:</p>
<p><strong>DataSets</strong></p>
<p>PRO: Might be a bit old fashioned, but very easy to use and let the most parts to be auto generated for you. One powerful aspect about datasets are the ease of traversing related data through the Relations. Also in a way its disconnected from database and might simplify the updates by taking care of timestamps automatically. Includes validation.</p>
<p>CONTRA: Quite old fashioned. Some consider them as no real business objects/Models but just a mirror of your SQL data tables. Passing them between WCF Service/Client might be more difficult than self created business objects.</p>
<p><strong>Enterprise Library 4.1 - Data Access Block</strong></p>
<p>PRO: The DAL is beautifully put into a Factory pattern. It takes care of connection opening and closing automatically. Very easy to use for most part. It supports both dataSets and normal SQL Sps to create your own Business objects. As part of an ongoing Framework it can be much more efficient to use in combination with rest of the Enterprise Library for an efficient end product.</p>
<p>CONTRA: ??</p>
<p><strong>Linq to SQL</strong></p>
<p>PRO: Auto creates the SQL tables into business objects. Easy to CRUD. Theoretically a very nice way to do it.</p>
<p>CONTRA: Having played around with it when it came out, I found it flaky and sometimes instable. It is already considered a dead technology after Microsoft announcement that Entity Framework 4.0 - as part of .NET 4.0 - will be Microsoft recommended way. Only few bug fixes are too be expected in .NET 4.0 but no more feature extending plans. </p>
<p><strong>Entity Framework 4.0</strong></p>
<p>I don't know anything about it, but only that it will eventually replace everything else as on .NET 4.0. I am also tempted to use it, however since its still in BETA, I wouldnt be able to go that way yet.</p>
<p>I am very tempted to use Enterprise Library 4.1 - Data Access Block and to create my own business objects. The big Con is that it will take more time to create the DAL. Unless someone can convince me of using DataSets through the Data Access Block instead. </p>
<p>What are your comments and ideas?
Many Thanks,
Kave</p>
http://stackoverflow.com/questions/1813424/c-update-dataset-without-any-primary-key1C#: Update dataset without any primary keyPartial2009-11-28T19:02:54Z2009-11-28T19:31:37Z
<p>Is it possible in C# to use an OleDbAdapter and use its Update method for a dataset when a table has no primary key and how can I do this?</p>
http://stackoverflow.com/questions/284708/creating-a-dataset-designer-vb-from-xsd0Creating a dataset.designer.vb from xsdKen2008-11-12T17:39:24Z2009-11-28T06:09:26Z
<p>I have an xsd, , vb, xsc, and xss file for a dataset in VS 2008 that I copied over from another VS project, however I need to make changes to the dataset. Thus I got into the xsd file, created new columns, deleted ones that aren't needed, etc., etc. However I realized when I attempted to use the new dataset I did not have the vb code behind the scenes. This code is typically found in dataset.designer.vb. When I copied the old one over of course it is no longer valid since columns have changed. </p>
<p>Any idea How I can force VS 2008 to use a xsd and to have it create/update its designer code?</p>
<p>THANKS</p>
http://stackoverflow.com/questions/1810624/would-it-be-possible-to-extend-the-datacolumn-expression1Would it be possible to extend the DataColumn.Expressionprogrammernovice2009-11-27T21:02:30Z2009-11-27T21:44:43Z
<p>Could extension method be used for DataColumn.Expression to support for example the replace function ?</p>
<p>If yes, any sample code available somewhere ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1653926/visual-studio-dataset-designer-null0Visual Studio Dataset Designer NullDavid M2009-10-31T09:55:10Z2009-11-27T20:36:44Z
<p>Visual Studio 2008 has a bug in that you cannot use the dataset designer to set an int type field to be nullable. (There are error reports going back to Visual Studio 2005 but it seems this has never been addressed.)</p>
<p>The only selectable behaviour is to emit code that raises an exception if an null value is passed back from the database, rather than set the value to null, which would require the data type to be "int?" instead of "int".
A real world example case is when a foreign key is null because the dependent object has not yet be assigned. </p>
<p>Are there any sensible workarounds other than 1, not using Visual Studio datasets, 2. changing the datatype to string (which allows null but negates the point of strong typing and forces numerous casting), or 3. changing the emitted code (which will be overwritten if any changes are made to the dataset via the designer).</p>
http://stackoverflow.com/questions/1805299/update-datacolumns-with-latest-column-information0Update DataColumn's with latest column informationNathan Koop2009-11-26T19:23:44Z2009-11-26T19:59:53Z
<p>I have a dataset with a number of data columns, due to sizing issues I've updated a number of the varchar columns from say VARCHAR(20) to VARCHAR(50).</p>
<p>I'd like the DataTable to automatically grab the new column information, is this possible? I'd rather not go through each column in the table and update the length.</p>
http://stackoverflow.com/questions/1802132/asp-net-datasets-and-memory1ASP.NET datasets and memoryric2009-11-26T07:46:05Z2009-11-26T08:04:15Z
<p>I am using framework 2.0, and I don't understand how the datagrid and the datasets works after doing a postback. In msdn says that there's no need to do a databind again if the request is a postback. But my question is: how the datagrid shows again the records if there is no databind? I supose that asp.net saves in a cache the query results, but I am not sure. Please tell me what is the mechanism that .NET uses to accomplish it.</p>
<p>I have a large query result (hundreds), paginated each 50 records, and I want to avoid doing the same query every time the user select the next 50 records.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1796665/reading-an-xls-file-with-the-microsoft-jet-engine0Reading an XLS file with the Microsoft Jet Enginewdhough2009-11-25T12:38:44Z2009-11-25T12:53:30Z
<p>Hi,</p>
<p>I want to allow my application to allow import of data through XLs files. I already do this with CSV files and XML files, but would like to open the scope for users. I am having trouble with the loading of the file. We load the files (XLS,CSV,Xml) into a data set and work on it from there. The loading code for XLS is below</p>
<pre><code> FileInfo fi = new FileInfo(filename);
//create and open a connection with the supplied string
OleDbConnection objOleDBConn;
objOleDBConn = new OleDbConnection(string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'", fi.FullName));
objOleDBConn.Open();
DataTable dt = objOleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
if (dt == null || dt.Rows.Count == 0)
{
return;
}
string sheet = dt.Rows[0]["TABLE_NAME"].ToString();
//then read the data as usual.
OleDbDataAdapter objOleDBDa;
objOleDBDa = new OleDbDataAdapter(string.Format("select * from [{0}]",sheet), objOleDBConn);
objOleDBDa.Fill(data);
objOleDBConn.Close();
</code></pre>
<p>So my data gets loaded ok, but it appears to set the data types of various columns, and this is a problem for one of my columns. Its a bit field and we have chosen to accept False, True, Yes,No, Y, N. There is code that transfers this into a bool later on. This works fine in a CSV file (for which the connection string is different) but in an xls if the first 10 rows are say "false" or "true", and then say the 11th says "yes", then i just get a null entry. I'm guessing that it reads the first few entries and determines the data type based on that? Is there a way to turns this off?</p>
<p>Thanks</p>
<p>Will</p>
http://stackoverflow.com/questions/1182362/formating-datetime-column-in-a-dataset1formating datetime column in a DataSet.Jebli2009-07-25T15:53:33Z2009-11-25T02:48:53Z
<p>Hi,</p>
<p>I have a dataset that is populated by reading excel file. The dataset stores the data from the excel.
The date in the dataset in in the format "2\2\2009 12:00:00 AM" but i need the data format converted to "2\2\2009" .
I want to change the format of all the data in that particular column. Please help.</p>
http://stackoverflow.com/questions/1793008/compare-dataset-column-type0Compare dataset column typeJulien Daniel2009-11-24T21:23:03Z2009-11-25T01:24:21Z
<p>Here's the code :</p>
<pre><code>try
{
string strReadDataLine;
strReadDataLine = sr.ReadLine();
while (strReadDataLine != null)
{
string[] strReadDataLineSplited = strReadDataLine.Split(';');
DataRow thisRow = thisDataSet.Tables["Repartition"].NewRow();
DataTable item = thisDataSet.Tables["Repartition"];
for (int i = 0; i < strDataLines.Length; i++)
{
DataColumn thisColomn =
thisDataSet.Tables["Repartition"].Columns[i];
// Here i need to know if the colomn is a string
if (thisColomn.DataType.ToString() == "System.String")
{
thisRow[strDataLines[i]] = strReadDataLineSplited[i];
}
}
thisRow["ID_USAGER"] = 1;
thisDataSet.Tables["Repartition"].Rows.Add(thisRow);
strReadDataLine = sr.ReadLine();
}
//thisDataAdapter.Update(thisDataSet, "Repartition");
}
</code></pre>
<p>What I need is to know if a column is a string to assign a data as string to the column. What I get is a argumentException saying "input string was not in correct format. couldn't store <2.111> in MY_FLOAT colomn. Expect type is double."</p>
<p>What I really need is to compare the column type to something to get the type then assign the column to the correct type.</p>
<p>I hope this is clear as my English is not so good.</p>
http://stackoverflow.com/questions/1783415/dataset-duplicate-values-when-setting-primary-key0Dataset - duplicate values when setting primary keyCarra2009-11-23T14:25:11Z2009-11-23T14:48:09Z
<p>I have a dataset with a column "person_code".</p>
<p>This column contains the following data:</p>
<ul>
<li>"Carra"</li>
<li>"Carra " -> one trailing space</li>
</ul>
<p>Now if i set the primary key of the dataset to the column "person_code" I'll get the following error:</p>
<p>"These columns don't currently have unique values."</p>
<p>Any way around this? The best I can think of is to add a new column "primary_key" and then replace the ending/starting spaces with another sign. This will cause some extra problems: if I replace them with _ and there's already a Carra_ in the database...</p>
<p>Is there a better way?</p>
http://stackoverflow.com/questions/1226975/timeout-question-re-strongly-typed-datasets-and-objectdatasources0Timeout question re. strongly typed datasets and objectdatasourcesRobert2009-08-04T11:35:03Z2009-11-22T07:00:03Z
<p>I have now found a TON of crappy not clear, not relevant examples of ways I can start to tackle the problem. Can't believe i've spent any more than 10 minutes on this but it's been 3 hours so far.</p>
<p>I am looking at an aspx page with next to no code behind. This page renders a crystal report out to a pdf.</p>
<p>The crystal report is bound to an objectdatasource which is bound to one of the tableadapters in a stupidly large dataset.</p>
<p>The problem is the query times out. It's a long running proc, (50 seconds) and timeout is 30 seconds. I have looked at adding a partial class but since the objects are not bound in code i wouldn't be able to set the timeout that way and it's a web site and as such the code behind for the dataset is a whole bunch of XML anyway and i'm not sure I can add a partial class here to expose the time out and if I could i'd be repeating about 70 times, once per adapter.</p>
<p>So does anyone have a better, simpler or at least a method that works so I can get this crystal report, today :)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1776578/c-bind-xml-to-combobox-via-dataset0C#: Bind XML to ComboBox via DataSetsamunai2009-11-21T19:57:56Z2009-11-21T20:48:27Z
<p>Hello guys,</p>
<p>I am trying to get this code work for about 2 hours =( I am new to C# and don't know all the .NET library classes.</p>
<p>The target is to populate XML data to comboBox</p>
<pre><code>DataSet dataSet = new DataSet();
DataTable dataTable = new DataTable("table1");
dataTable.Columns.Add("col1", typeof(string));
dataSet.Tables.Add(dataTable);
StringReader strR = new StringReader("<root><parm1>val1</parm1><parm2>val2</parm2></root>");
dataSet.ReadXml(strR);
comboBox1.DataSource = dataSet.Tables[0];
comboBox1.DisplayMember = "col1";
comboBox1.ValueMember = "col1";
</code></pre>
<p>Well, it doesn't work as expected. The ComboBox should show
val1
val2</p>
<p>I don't really understand how column names of DataTable in a DataSet are related to XML-Tags... Maybe that's the point?</p>
<p>Thank You in advance!</p>
http://stackoverflow.com/questions/1439908/multiple-connection-types-for-one-designer-generated-tableadapter1Multiple Connection Types for one Designer Generated TableAdapterTim2009-09-17T16:28:28Z2009-11-20T22:00:02Z
<p>I have a Windows Forms application with a DataSet (.xsd) that is currently set to connect to a Sql Ce database. Compact Edition is being used so the users can use this application in the field without an internet connection, and then sync their data at day's end.</p>
<p>I have been given a new project to create a supplemental web interface for displaying some of the same reports as the Windows Forms application so certain users can obtain reports without installing the Windows app.</p>
<p>What I've done so far is create a new Web Project and added it to my current Solution. I have split both the reports (.rdlc) and DataSets out of the Windows Forms project into their own projects so they can be accessed by both the Windows and Web applications. So far, this is working fine.</p>
<p>Here's my dilemma:</p>
<p>As I said before, the DataSets are currently set up to connect to a local Sql Ce database file. This is correct for the Windows app, but for the Web application I would like to use these same TableAdapters and queries to connect to the Sql Server 2005 database. I have found that the designer generated, strongly-typed TableAdapter classes have a ConnectionModifier property that allows you to make the TableAdapter's Connection public. This exposes the Connection property and allows me to set it, however it is strongly-typed as a SqlCeConnection, whereas I would like to set it to a SqlConnection for my Web project.</p>
<p>I'm assuming the DataSet Designer strongly-types the Connection, Command, and DataAdapter objects based on the Provider of the ConnectionString as indicated in the app.config file. Is there any way I can use some generic provider so that the DataSet Designer will use object types that can connect to both a Sql Ce database file AND the actual Sql Server 2005 database?</p>
<p>I know that SqlCeConnection and SqlConnection both inherit from DbConnection, which implements IDbConnection. Relatively, the same goes for SqlCeCommand/SqlCommand:DbCommand:IDbCommand. It would be nice if I could just figure out a way for the designer to use the Interface types rather than the strong types, but I'm hesitant that that is possible.</p>
<p>I hope my problem and question are clear. Any help is much appreciated. Let me know if there's anything I can clarify.</p>
http://stackoverflow.com/questions/1768769/dataset-storeprocedure-table-names0DataSet StoreProcedure Table namesMahesh2009-11-20T06:50:23Z2009-11-20T07:06:29Z
<p>Hi,</p>
<p>I am calling a stored procedure to return two tables. I am getting it as a dataset in my console application. The table names in the dataset are something like TABLE,TABLE1.</p>
<p>Is there anyway to change this to a meaningful names from stored procedure??</p>
<p>Thanks,
Mahesh</p>
http://stackoverflow.com/questions/1766277/where-can-i-find-graph-input-resources-files0where can I find graph input resources/files?Manuel2009-11-19T20:27:30Z2009-11-19T21:26:39Z
<p>Hi!<br>
I want to test various algorithms on graphs.<br>
Does anyone know a web where I can get lots of examples in text files?
I've found many examples but they are always images. I want a text description
of a graph, by edge listing or whatever... do you know one such source?</p>
<p>Thanks!<br>
Manuel</p>
http://stackoverflow.com/questions/1220384/dumping-dataset-ds-file-contents-to-a-text-file0Dumping dataset (.ds) file contents to a text filemlevit2009-08-03T01:36:08Z2009-11-19T18:41:45Z
<p>At work we use DataStage which uses dataset (.ds) files. I can view the contents of the file from without our UNIX environment by using:</p>
<pre><code>orchadmin dump -name <dataset name>
</code></pre>
<p>This only dumps the contents of the file to the screen. What I would like to do is have that dump stored inside a text file which I could then open/read from within Windows.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1757897/c-convert-dataset-to-generic-list0C# - Convert dataset to generic list [closed]Edumenna2009-11-18T17:59:35Z2009-11-18T17:59:35Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/545328/datatable-to-generic-list-memory-leak">DataTable to Generic List (memory leak?)</a> </p>
</blockquote>
<p>Hello,</p>
<p>I need to convert a dataset to generic list. I know, to convert list to dataset is more easy. But, the inverse is not so easy. For example, my generic list has columns of many types (int, string, boolean). How can I make a method that understand the type of each column?</p>
http://stackoverflow.com/questions/1757427/is-there-a-php-library-to-create-asp-net-datasets-for-use-with-asp-net-webservice0Is there a PHP library to create ASP.Net datasets for use with ASP.Net webservices?Kevin2009-11-18T16:52:33Z2009-11-18T16:52:33Z
<p>I need to consume a ASP.Net webserice from PHP. So far reading data hasn't been to difficult. I have been able to pars the XML and find the information that I need. The problem I am running into is sending data back to the webservice. It is looking for the XML representation of a dataset. Is there anything out there that can generate these for me?</p>
http://stackoverflow.com/questions/1746459/net-dataset-query-efficiency0.NET DataSet query efficiencyNick2009-11-17T03:48:13Z2009-11-17T04:13:36Z
<p>I've got a xml that I'm parsing and trying to extract some data from. Let's say the resulting dataset, after parsing an input xml file, has (2) Tables.</p>
<p>Table #1 contains an IP Address and a primary key.
Table #2 contains port numbers and a matching primary key.</p>
<p>I want to go through both tables and generate an object that contains an IP Address and matching port. Basically merging data from two tables that share the same primary key.</p>
<p>Right now, I'm using a foreach loop nested within another foreach loop. The outer one goes through each IP Address and the inner one goes through each port and matches the same primary key.</p>
<p>The result works, but it's O(n^2). Is there a faster way to do this?</p>
<p>btw, I'm using C#</p>
http://stackoverflow.com/questions/836806/c-xmldocument-to-datatable0C# XMLDocument to DataTable?mattdell2009-05-07T20:14:36Z2009-11-16T21:57:37Z
<p>I assume I have to do this via a DataSet, but it doesn't like my syntax.</p>
<p>I have an XMLDocument called "XmlDocument xmlAPDP".</p>
<p>I want it in a DataTable called "DataTable dtAPDP".</p>
<p>I also have a DataSet called "DataSet dsAPDP".</p>
<p>-</p>
<p>if I do DataSet dsAPDP.ReadXML(xmlAPDP) it doesn't like that because ReadXML wants a string, I assume a filename?</p>
<h2>Thanks,</h2>
<p>-Matt</p>
http://stackoverflow.com/questions/1742267/saving-nested-xml-in-c0Saving nested XML in C#Stefan Teitge2009-11-16T13:41:35Z2009-11-16T14:07:41Z
<p>I've go the following XML file...</p>
<pre><code><A>
<B>
<C>ValueX</C>
<D>ValueY</D>
</B>
</A>
</code></pre>
<p>Which I read into a DataSet to display it in a DataGridView.</p>
<pre><code>DataSet ds = new DataSet();
DataTable t = new DataTable("B");
ds.Tables.Add(t);
t.Columns.Add("C", typeof(string));
t.Columns.Add("D", typeof(string));
// bind to DataGridView
ds.ReadXml(file);
</code></pre>
<p>But when I write it back using the follwing command...</p>
<pre><code>ds.WriteXml(file);
</code></pre>
<p>the nested structure of the file is destroyed.</p>
<pre><code><A>
<C>ValueX</C>
<D>ValueY</D>
</A>
</code></pre>
<p>Any ideas how to preserve the stcuture.</p>