0
votes
1answer
28 views
DataSet transformation to new DataSet group by (x)
I have DataSet.
it returns date, and value by date.
for ex:
01.01.2009 454
02.01.2009 785
03.01.2009 475
---------- ---
30.01.2009 523
I need new DataSet, that group by week.
for ex:
…
0
votes
1answer
44 views
Binding a DataGridView to multiple Tables in DataViewManager or DataSet
I have created three data tables by pulling data from an sql database. DT1, DT2, DT3.
I have added these three tables to a data set, myDS.
I have added relations between these three tables.
I …
0
votes
3answers
40 views
How can I use DataSets to store my application data in an XML file?
On my main window I have a DataGridView that I wish to display my data. My application allows users to input, change, and delete data. I asked my friend the best method of doing this he said storing …
0
votes
0answers
9 views
ASP.net Compile time XML/dataset checks
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 …
0
votes
3answers
34 views
How to create and manage several datasets
What is the best way for me to have several datasets ?
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 …
0
votes
2answers
39 views
Putting dataset fields in textboxes
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).
the xml has about 60 fields, and i'm not that …
0
votes
1answer
20 views
Defining XML fields to be displayed in a datagrid through a dataset
The following code:
DataSet ds = new DataSet;
ds.ReadXml("c:\output\" + nome);
GridView1.DataSource = ds;
GridView1.DataBind();
succeeds in getting the fields from the XML, but as default it only …
0
votes
0answers
11 views
Parameterize the schema in a strongly-typed ADO.NET TableAdapter
Hey all,
I'm trying to build a strongly-typed dataset in ADO.Net and am having a little trouble with one aspect of the TableAdapters.
My query looks like
SELECT *
FROM testdict.ModuleVariable
WHERE …
0
votes
1answer
18 views
fill typed dataset by accessing columns directly?
hi
I thought I can fill a typed dataset , which I created like this:
The name of the table is HouseInformation
In design mode I created a column NameOfHouse and Price.
Is it not possible to fill …
3
votes
5answers
131 views
New .NET 3.5 Project: Which DAL technology to use?
Hello,
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 …
1
vote
2answers
33 views
C#: Update dataset without any primary key
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?
1
vote
1answer
29 views
Would it be possible to extend the DataColumn.Expression
Could extension method be used for DataColumn.Expression to support for example the replace function ?
If yes, any sample code available somewhere ?
Thanks.
0
votes
1answer
22 views
Update DataColumn’s with latest column information
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).
I'd like the DataTable to automatically grab the …
1
vote
4answers
50 views
ASP.NET datasets and memory
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. …
0
votes
2answers
34 views
How do I generate quasi-random statistical data sets?
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 …
