Tagged Questions
The dataset tag has no wiki summary.
56
votes
9answers
14k views
Should I Dispose() DataSet and DataTable?
DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.
However, from what I've read so far, DataSet and DataTable don't actually ...
27
votes
16answers
3k views
Datasets for Running Statistical Analysis on
What datasets exist out on the internet that I can run statistical analysis on?
24
votes
3answers
2k views
What is the difference between “LINQ to Entities”, “LINQ to SQL” and “LINQ to Dataset”
I've been working for quite a while now with LINQ. However, it remains a bit of a mystery what the real differences are between the mentioned flavours of LINQ.
The successful answer will contain a ...
17
votes
6answers
8k views
Datatable vs Dataset
I currently use a datatable to get results from a database which I can use in my code.
However, many example on the web show using a dataset instead and accessing the table(s) through the collections ...
16
votes
6answers
12k views
Why is a SQL float different from a C# float
Howdy, I have a DataRow pulled out of a DataTable from a DataSet. I am accessing a column that is defined in SQL as a float datatype. I am trying to assign that value to a local variable (c# float ...
16
votes
7answers
3k views
What are the disadvantages of Typed DataSets
I come from a world that favors building your own rather than rely on libraries and frameworks built by others. After escaping this world I have found the joy, and ease, of using such tools as Typed ...
15
votes
4answers
648 views
Useful stock SQL datasets?
Does anyone know of any resources that provide good, useful stock datasets? For example, I've downloaded a SQL script that includes all of the U.S. states, cities, and zipcodes. This saved me a lot ...
14
votes
4answers
2k views
Parsing a .NET DataSet returned from a .NET Web Service in Java
I have to consume a .NET hosted web service from a Java application. Interoperability between the two is usually very good. The problem I'm running into is that the .NET application developer chose to ...
14
votes
4answers
30k views
c# (WinForms-App) export DataSet to Excel
I need a solution to export a dataset to an excel file without any asp code (HttpResonpsne...) but i did not find a good example to do this...
Best thanks in advance
13
votes
8answers
1k views
Why do we still use DataSets in .NET?
DataSets were one of the big things in .NET 1.0 and even now when using .NET 3.5 I still find myself having to use them....especially when I have to call a stored proc which returns a dataset which I ...
13
votes
13answers
3k views
C#: What Else Do You Use Besides DataSet
I've found myself increasingly unsatisfied with the DataSet/DataTable/DataRow paradigm in .Net, mostly because it's often a couple of steps more complicated than what I really want to do. In cases ...
11
votes
4answers
3k views
How to view a DataTable while debugging
I'm just getting started using ADO.NET and DataSets and DataTables. One problem I'm having is it seems pretty hard to tell what values are in the data table when trying to debug.
What are some of the ...
10
votes
5answers
453 views
How do I generate random sample data in my Oracle database?
Does anyone know of a tool that can inspect a specified schema and generate random data based on the tables and columns of that schema?
10
votes
3answers
23k views
How do I find out if a column exists in a VB.Net DataRow
I am reading an XML file into a DataSet and need to get the data out of the DataSet. Since it is a user-editable config file the fields may or may not be there. To handle missing fields well I'd like ...
9
votes
14answers
432 views
Test for null values in C#
If I do something like:
DataSet ds = GetMyDataset();
try
{
string somevalue = ds.Tables[0].Rows[0]["col1"];
}
catch
{
//maybe something was null
}
Is there a good way to check for null ...
9
votes
4answers
460 views
Acquiring basic skills working with visualizing/analyzing large data sets
I'm looking for a way to learn to be comfortable with large data sets. I'm a university student, so everything I do is of "nice" size and complexity. Working on a research project with a professor ...
9
votes
4answers
319 views
Fantasy names database
I am building a demo dataset for my webapp. I would like thousands of "real looking" names. They should not be names of famous people or fiction heroes or names that will evoke associations. They ...
8
votes
3answers
163 views
Read dataset in R in which comma is used for field separator and decimal point
How could you read this dataset in R, the problem is
that the numbers are floats and are like 4,000000059604644E+16
and they are separated by a ,
4,000000059604644E-16 , 7,999997138977056E-16, ...
8
votes
5answers
333 views
Good source for machine learning datasets in computer vision
What is a good source for datasets that can be used to train machine learning algorithms, specifically image sets for computer vision projects.
The best source I've found so far is: ...
8
votes
3answers
894 views
Large public datasets?
I am looking for some large public datasets, in particular:
Large sample web server logs that have been anonymized.
Datasets used for database performance benchmarking.
Any other links to large ...
8
votes
10answers
8k views
DataReader or DataSet when pulling multiple recordsets in ASP.NET
I've got an ASP.NET page that has a bunch of controls that need to be populated (e.g. dropdown lists).
I'd like to make a single trip to the db and bring back multiple recordsets instead of making a ...
8
votes
4answers
2k views
What triggers ConstraintException when loading DataSet?
How can I find out which column and value is violating the constraint? The exception message isn't helpful at all:
Failed to enable constraints. One or
more rows contain values violating
...
8
votes
1answer
2k views
PHP Script to populate MySQL tables
Is anyone aware of a script/class (preferably in PHP) that would parse a given MySQL table's structure and then fill it with x number of rows of random test data based on the field types? I have never ...
7
votes
3answers
626 views
What's the most efficient way of generating all possible combinations of skyrim (PC Game) potions?
So each ingredient has 4 effects
http://www.uesp.net/wiki/Skyrim:Ingredients
If I combine two ingredients. The potions will have the bonus effects of where the two sets intersect. I can't use the ...
7
votes
3answers
141 views
Git + a large data set?
We're often working on a project where we've been handed a large data set (say, a handful of files that are 1GB each), and are writing code to analyze it.
All of the analysis code is in Git, so ...
7
votes
3answers
284 views
DataTable and DataSet should be obsolete now?
Is there any valid use case for DataSet and DataTable now that we have Entity Framework?
Should DataTable/DataSet be considered obsolete?
7
votes
4answers
123 views
Is there a “standard” dataset for music in symbolic form?
For music data in audio format, there's The Million Song Dataset (http://labrosa.ee.columbia.edu/millionsong/), for example. Is there a similar one for music in symbolic form (that is, where the notes ...
7
votes
2answers
1k views
How can i add fields to a clientdataset at runtime?
I have aTClientdataset, which is provided by a TTable’s dataset.
The dataset has two fields: postalcode (string, 5) and street (string, 20)
At runtime I want to display a third field (string, 20). ...
7
votes
6answers
802 views
Nullable types in strongly-typed datatables/datasets - workarounds?
Strongly-typed DataTables support "nullable" field types, except that the designer will not allow you change the setting to "allow nulls" for any value type fields. (ie: String types allow nullable, ...
7
votes
3answers
3k views
Twitter (Social networking) Dataset
I am looking for twitter or other social networking sites dataset for my project. I currently have the CAW 2.0 twitter dataset but it only contains tweets of users. I want a data that shows the number ...
7
votes
4answers
5k views
OleDB & mixed Excel datatypes : missing data
I have an Excel worksheet I want to read into a datatable - all is well except for one particular column in my Excel sheet. The column, 'ProductID', is a mix of values like ########## and n#########.
...
7
votes
3answers
4k views
Should I Use Entity Framework, DataSet or Custom classes?
I am really having a hard time here. I need to design a "Desktop app" that will use WCF as the communications channel. Its a multi-tiered application (DB and application server are the same, the ...
7
votes
3answers
10k views
How to loop through a dataset in powershell?
I am trying a "very" simple task to output values of each rows from a dataset :
$Data = ''
for($i=0;$i -le $ds.Tables[1].Rows.Count;$i++)
{
write-host 'value is : '+$i+' ...
7
votes
6answers
1k views
Is Dataset an ORM?
I am a little bit confused about Dataset compared to ORM (NHibernate or Spring.Net). From my understanding the ORM sits between the application layer and the database layer. It will generate the SQL ...
7
votes
3answers
14k views
How does one insert a column into a dataset between two existing columns?
I'm trying to insert a column into an existing DataSet using C#.
As an example I have a DataSet defined as follows:
DataSet ds = new DataSet();
ds.Tables.Add(new DataTable());
...
7
votes
4answers
3k views
.NET Table Adapters: Get vs. Fill?
I always seem to use Get when working with data (strongly typed or otherwise) from the database and I have never really needed to use Fill although I just as easily could use Fill instead of get when ...
7
votes
6answers
1k views
Should I return a strongly typed dataset from a webservice?
Should I expose a strongly typed dataset from a webservice and bind it directly in a client? or are there more sensible ways for asmx web services? I am doing CRUD operations (Create, Read, Update, ...
7
votes
6answers
2k views
In Delphi, is TDataSet thread safe?
I'd like to be able to open a TDataSet asynchronously in its own thread so that the main VCL thread can continue until that's done, and then have the main VCL thread read from that TDataSet ...
7
votes
5answers
3k views
VB.NET Get underlying system.type from nullable type
I'm attempting to create a dataset based on the properties of an object. For example, I have an instance of a Person class with properties including ID, Forename, Surname, DOB etc. Using reflection, ...
6
votes
3answers
237 views
it's possible to create a fake data field in a delphi dataset?
I want to create a 'fake' data field in a DataSet (not ClientDataSet):
the field should not be stored in the db
it's not a calculated field (the user should be allowed to enter input data)
the field ...
6
votes
4answers
490 views
SQL Server best method to match word phrases and order relevence
What is the best way to rank a sql varchar column by the number (count)/match of words in a parameter, with four distinct unique criteria. This is likely not a trivial question but I am challenged to ...
6
votes
3answers
313 views
Performance of accessing dataSet fields using Field-names instead of indexes
Is the performance negligible?
For example,
myQuery.FieldbyName("MyField").AsString;
myQuery.Fields[0].AsString;
Cases:
Table with a decent number of fields, say > 50 fields
Accessing large ...
6
votes
5answers
597 views
How To Speed Up Loading DataSets
When Using SQL Server Reporting Services (client Reports), whenever a Client (rdlc) report Opens Visual Studio Loads entire application datasets,
how to speedup loading this all datasets or how to ...
6
votes
5answers
812 views
New .NET 3.5 Project: Which DAL technology to use?
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 ...
6
votes
8answers
28k views
Convert generic list to dataset in C#
I have a Generic list of Objects. Each object has 9 string properties. I want to turn that list into a dataset that i can pass to a datagridview......Whats the best way to go about doing this?
6
votes
2answers
7k views
DataSet.WriteXml to string
I'm tring to get a string from a DataSet without using GetXml. I'm using WriteXml, instead. How to use it to get a string?
Thanks
5
votes
3answers
127 views
problem with getting data from database
I am trying to get the data from database by using the below code.....
if there is no data in the table it will always goes to
this statement
I am using mysql.net connector for getting the data ...
5
votes
4answers
175 views
Examples for Topological Sorting on Large DAGs
I am looking for real world applications where topological sorting is performed on large graph sizes.
Some fields where I image you could find such instances would be bioinformatics, dependency ...
5
votes
2answers
264 views
How long have the Lookup and Locate methods of TDataset been around?
I'm working on modernizing and fixing bugs in the codebase of a Delphi 4-era program written by someone else. A lot of the code is kinda scary by modern standards, and I can't help but wonder if some ...
5
votes
5answers
684 views
Strongly typed datasets vs. weakly typed datasets
What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example?
And also, what is the difference between strongly typed and weakly typed datasets?