News in the Category: DataSet Subscribe to the rss of this category.

Total posts: 413

Video: How to Perform Custom Updates with ASPxGridView

The ASPx Blog, July 2, 2008

Custom Updates allow you to tweak and define your own values for an edit column before theyre saved to the data source. Lets say you want to define the value used to update a column in your data table...

How LINQ to Dataset works in VB (Jonathan Aneja)

The Visual Basic Team, May 14, 2008

LINQ at its core requires any data source to be queryable, which basically means it must implement IEnumerable.  (Its actually a bit more complicated than that, for a full explanation see section...

Using LINQ to Dataset in an .aspx page (Jonathan Aneja)

The Visual Basic Team, May 14, 2008

Recently I got a customer question about how to use LINQ to Dataset in an .aspx file.  The compiler was complaining that it couldn't find the AsEnumerable method that allows LINQ to work over a D...

Quickly Copy Data Rows from DataReader to a DataTable

DevX: .NET Feed, May 13, 2008

.NET 2.0 provides the new DataTable.Load method to copy data rows from DataReader to a DataTable....

Using A Single Transaction With Multiple Typed DataSets

The Code Project Latest Articles, May 4, 2008

Provides a detailed explanation of how to implement a single transaction across multiple Typed Datasets...

WebGrid Ajax Data Grid available for free!

ASP.NET Announcements, April 27, 2008

Deliver any Web forms rapidly ( with AJAX technology ) with a nearly code less development experience and with powerful GUI tool set at hand you will be able to easily build highly interactive, standa...

FIX: Objects are not serialized correctly when you serialize and deserialize the DataSet objects by using the SerializationFormat.Binary format parameter in a .NET Framework 2.0-based application

kbAlertz.com :: .NET Framework 2.0, April 16, 2008

948646 ... FIX: Objects are not serialized correctly when you serialize and deserialize the DataSet objects by using the SerializationFormat.Binary format parameter in a .NET Framework 2.0-based appli...

RadChart: Auto Text-wrapping

the telerik blogs, April 11, 2008

Hello, With the Q1 2008 release date closing-in fast, I'd like to present to you yet anotherbig improvementthat will be introduced in the new version of RadChart --automatic text-wrapping support. S...

MySQL Optimization - A Little Tip

Fiftyfoureleven.com Web Development Weblog - Full Posts, April 11, 2008

Some simple suggestions Well I don't consider myself an expert, I do have experience with working with larger datasets and there are a couple of things that I always do to keep... Read more ...

Keeping Track of Books Using VB (Matt Gertz)

The Visual Basic Team, March 3, 2008

I have a confession to make.  Im not a database guy.  Ive done a lot of varied coding over my career, but somehow Ive never been directly involved in the guts of database coding.  Whene...

Developing an RSS Data Source - Part III

Shaun Walker, March 2, 2008

Part 3 of a 4 part series on developing a Data Source in the Reports Module. This series focuses on developing a Data Source that retrieves data from an RSS Feed....

Developing an RSS Data Source - Part II

Shaun Walker, February 29, 2008

Part 2 of a 4 part series on developing a Data Source in the Reports Module. This series focuses on developing a Data Source that retrieves data from an RSS Feed....

How not to compare "body of knowledge"

ISerializable, February 27, 2008

If you are faced with two technologies, ideas, or frameworks - how do you compare which has a wider body of knowledge? Specifically - can you tell if X does NOT have a wide body of knowledge? Here's ...

Date Column/DataSet Bug Workaround

DevX: .NET Feed, February 11, 2008

Maybe you've noticed that when a DataSet's date columns are passed to a remote web server or web service who's time zone differs from that of the client, the date will be converted to the equivalent l...

Designing N-Tiered Data Access Layer Using Datasets - Part 1

15Seconds.com Features, January 3, 2008

In the first part of this three part series on designing an N-tiered data access layer using datasets, David Catherman discusses the pros and cons of using datasets and examines how the dataset genera...

Custom configuration Data from DataSets: Less is More

EggHeadCafe.com New Articles, December 15, 2007

Sometimes it's easier and faster to do things "the easy way" with custom configuration data saved from a DataSet instead of slaving over Custom ConfigurationSections in the App.Config or web.config ...

DataSet enhancements in VS2008

The Moth, December 11, 2007

For those of you using the DataSet, you'll be happy to know that there are enhancements to it, including these three:1. Hierarchical Updates: Read.2. Separate DataSets and TableAdapters for multi-tier...

LINQ to DataSet video

The Moth, December 10, 2007

I have already written about LINQ to DataSet, and for more details than what I provided you should follow the links I suggested on that post. In addition, I just published an 18' video on LINQ to Data...

Implementing a Generic Data Transfer Object in C#...

DotNetJohn.Com, November 18, 2007

This article discusses implementation of a generic Data Transfer Object that can be used in lieu of passing instances of DataSets or Custom Business Entities from the User Interface Layer to the o...

Limit Rows In DataTable or DataSet

Steven Smith, October 30, 2007

I wrote some quick and dirty ADO.NET code to go against an RSS feed instead of a flat XML file today.  In the process I had to figure a way to limit the number of rows returned by the function, w...

Returning the Just-Inserted ID Value Using Typed DataSets

Scott on Writing, October 23, 2007

Probably the most frequent question I field from readers of my Working with Data in ASP.NET 2.0 tutorial series is, How do get the just-inserted ID value from theDAL? This is an important area, and on...

Performing joins between SharePoint lists

Sahil Malik - blah.winsmarts.com, October 20, 2007

Yeah you read that right. They told you it couldn't be done - I'm tellin' ya it can be done. Here is how. First, go ahead and create two lists a) Customers (Title)b) Orders ...

ASP.NET Podcast Show #102 - ASP.NET AJAX Futures Data Part II - Video and Audio

Wallace B. McClure, October 5, 2007

Original URL: http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2007/10/04/asp-net-podcast-show-102-asp-net-ajax-futures-data-part-ii-video-and-audio.aspx Subscribe <-- All the cool k...

Use Distributed Caching as a Master DataSource with ReadThru/WriteThru

DotNetJunkies Just Published, September 19, 2007

Start using NCache (Distributed caching) as a master data source for your applications and let NCache, in turns, talk to the database for any add/update/delete or load operation either synchronously o...

191 Miles to Astoria

Andrew Conrads WebLog, September 12, 2007

A couple of months ago I became Development Lead for Project Astoria.   The goal of Project Astoria is to provide a data services for the web. AKA Project Astoria provides a RESTFUL head for...

Science Project

Andrew Conrads WebLog, September 8, 2007

In the original Linq CTP and the first Orcas Beta, we included a DataSet specific Linq operator called CopyToDataTable<T> (It was called ToDataTable at one point also).  For Beta 2 of ...

Migrating BoundColumn to BoundField problem solution

The Code Project Latest Articles, September 6, 2007

BoundColumn => BoundField problem solution when converting DataTable to DataView...

DataSet.WriteXmlSchema and DataSet.ReadXmlSchema Issue

Keyvan Nayyeri, September 4, 2007

As a part of my implementation of Google Safe Browsing API in Subkismet project, I was working on an XML provider to store data in XML files and load them later.  One of approaches that I tried t...

How to: Create RadRotator Programmatically

the telerik blogs, August 27, 2007

It recently came to my attention that there is no good documentation on the Telerik website showing you how to create a RadRotator (with a defined template) programmatically. There is some documentati...

Typed Dataset and its Usages

ASPAlliance.com - The #1 ASP.NET Community, August 24, 2007

This article explains the some uses of typed datasets and some of the common problems that may occur during typed dataset development....

Allow Your End Users To Generate PDF Documents

Radical Development, August 16, 2007

If your not familiar with PDF (Portable Document Format) then this entry may not be for you. PDF was developed by Adobe Systems well over 15 years ago and in today's electronic age PDF documents are c...

LINQ to DataSet

The Moth, July 26, 2007

Another LINQ implementation that will ship with Fx 3.5 is LINQ to DataSet (not to be confused with LINQ to SQL).LINQ to DataSet is about offering a strongly typed in-memory query language for DataSets...

Adding Additional DataTable Columns

ASP.NET Daily Articles, July 24, 2007

When using the TableAdapter Wizard to create a Typed DataSet, the corresponding DataTable contains the columns returned by the main database query. But there are occasions when the DataTable needs to ...

Hierarchical data sources and RadControls

the telerik blogs, July 9, 2007

In his recent post Bertrand Le Roy announced that he migrated his ObjectHierarchicalDataSource and CompositeHierarchicalDataSource controls from GotDotNet to CodePlex. I just downloaded the sample pro...

ThinkGeo Announces the Release of TIGER 2006 SE Data

DotNetJunkies Just Published, June 27, 2007

Lawrence, KSThinkGeo LLC announces the release of TIGER 2006 Second Edition data in ShapeFile (.shp) format. TIGER 2006 SE data is a complete geographic dataset of the United States and all its territ...

Aspose.Cells for .NET supports import or export of Excel 2007 data and formatting features now.

DotNetJunkies Just Published, June 25, 2007

Aspose.Cells is a .NET component for spreadsheet reporting without using Microsoft Excel. Main features include; Import or export Excel 2007 data & formatting, open an excel file to and from strea...

TableDataSource - binding DataTable to Rich Data Controls

The Code Project Latest Articles, June 20, 2007

Binding DataTable to Rich Data Controls...

Cascading DropDownList Controls -- Insert mode

mikes web log, June 2, 2007

In response to the post about using casccading (dependent) drop-down lists in a FormView control, a number of people have wondered how you can use similar drop-downs in Insert mode in a FormView contr...

Implicit and Explicit Operators in C#

<Rolog>, May 24, 2007

For a side project I'm working on, explicit operators have come in handy in the data layer. With explicit operators, you can convert from one class to another using a user-defined conversion opera...

Exporting a Dataset with multiple tables in separate sheets in an Excel file

The Code Project Latest Articles, May 24, 2007

This article describes how to export the data from multiple tables in a Dataset to an Excel file in separate sheets....

TableAdapter and Multiple Result Sets

The Visual Basic Team, March 13, 2007

Several people asked me whether TableAdapter can be used to retrieve multiple result sets from stored procedures. The quick answer is... No, you can't do that with TableAdapter.Fill() method that gets...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Edit SQL 2005 Analysis Server Cube Report Models

Brendan Tompkins, February 28, 2007

I've been spending a good portion of the year so far working with SQL Server 2005.   I have to comment that when Microsoft hits the mark with a product release, they really nail it. &nbs...

Revisiting Datasets

Karl Seguin [MVP], February 25, 2007

(Apologies for the relative lack of posts, I’m working on something brand new which I hope to be able to share with the community in the coming month…stay tuned).Warning: this might come ...

Using the ElementPath Capability in SQL Reporting Service 2005

DevX: Latest XML Articles, February 20, 2007

Using the ElementPath tag increases your risk of losing Fields when the data source is refershed. Find out how to workaround this quirk....

Product Spotlight