12
votes
9answers
910 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 DataT …
5
votes
3answers
125 views
Should I Use Entity Framework, DataSet or Custom classes?
Hi Guys, 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 s …
5
votes
3answers
2k views
C# (Visual studio): Correlation between database, dataset, binding source
Hello. I am just learning C# through Visual Studio 2008?
I was wondering what exactly is the correlation between dabases, datasets and binding sources?
As well, what is the funct …
4
votes
8answers
134 views
Is List<> better than DataSet for Interface Layer in ASP.Net ?
I want to get data from my data access layer into my business layer, then prepare it for use in my UI.
So i wonder: is it better to read my data by DataReader and use it to fill a …
4
votes
5answers
166 views
Why was TDataSource created originally?
What was (or would be) the reasoning behind creating TDataSource as an intermediary between data bound components and the actual underlying TDataSets, rather than having the compon …
4
votes
6answers
331 views
where should datasets reside in a n-tier (multi layered) architecture?
We are currently havin a discussion if dataset should go in the data or business layer?
My friend thinks all ADO.NET components should go in data layer. For me this does not se …
3
votes
4answers
163 views
How to view a DataTable while debuging
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.
…
3
votes
2answers
305 views
Delphi: Reading number of columns + names from dataset?
Hello
Since Embarcadero's NNTP server stopped responding since yesterday, I figured I could ask here: I work with a non-DB-aware grid, and I need to loop through a dataset to extr …
3
votes
9answers
918 views
Fast algorithm for finding next smallest and largest number in a set
I have a set of positive numbers. Given a number not in the set, I want to find the next smallest and next largest numbers that are in the set. The only way I can think to do it no …
3
votes
3answers
455 views
C# .NET - How do I load a file into a DataSet?
I need to load a file (usually ASCII) into a DataSet. How can I do that?
What data types should I use for my columns?
Thanks.
3
votes
6answers
401 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 wil …
3
votes
3answers
607 views
Does LINQ use DataRelations to optimize joins?
I can't find the answer to this anywhere, and before I start pawing through generated code with Reflector I thought it'd be worth asking:
Suppose I have the following LINQ query r …
3
votes
3answers
2k 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());
ds …
3
votes
6answers
3k views
compare data in a vb.net dataset with values in an array list
I'm looking for an efficient way of searching through a dataset to see if an item exists. I have an arraylist of ~6000 items and I need to determine which of those doesn't exist i …
2
votes
2answers
54 views
How do we solve all this “Conversion from type DBNull to type String is not valid” nastiness?
In our applications, I can't think of many cases where we care about null string fields. We just want them to show as empty strings in most situations.
So when using the built in …
