.NET news » Search results

Search results for query "data" (259):

Create Reports from Any Data Source Using SQL Server Reporting Services Custom Data Extensions

SQL Server Reporting Services makes it easy to build reports from database data, but what if the data isn't in a database? This article shows you how to take advantage of Reporting Services' unique extensibility model to build reports from ADO.NET datasets.
2006-04-25 19:04:21   Source: Create Reports from Any Data Source...   Tags: Database

How to : Get Excel data into a .NET DataSet object

There may be requirement where in data in an Excel sheet has to be manipulated inside .NET Applications. Although there are many ways to achieve this (like using Excel object of COM), the most preferred way is to use the .NET Data providers to achieve this. This article discusses on the same.
2005-12-22 11:12:42   Source: How to : Get Excel data into a .NET...   Tags: Examples

Data Access for Partially Connected Applications

Modern applications require more sophisticated data access features than a simple connection to SQL Server. Data needs to be available in distributed scenarios as well as offline scenarios. This article provides an architectural overview and implementation examples that support these scenarios.
2006-02-03 23:26:10   Source: Data Access for Partially Connected...   Tags: Database

Data Binding in Windows Forms 2.0

Windows Forms 2.0 increases support for data binding via the new BindingNavigator and BindingSource objects, which will save you a lot of effort. Find out how you can perform sorting and searching tasks using data binding and simplify the display of master-detail relationships in tables.
2006-02-21 22:24:37   Source: Data Binding in Windows Forms 2.0   Tags: Database Visual Studio

Accessing and Updating Data in ASP.NET 2.0: Retrieving XML Data with XmlDataSource Control

The XmlDataSource control makes accessing, filtering, and transforming XML data a simple, code-free process. Additionally, the XPath() and XPathSelect() databinding methods added to ASP.NET 2.0 make displaying particular XML values or binding entire XML nodesets just as easy. And the XML data accessed can be from a local file or automatically downloaded from a specified URL. In this article we will examine how to use the XmlDataSource control and the XPath() and XPathSelect() databinding methods, displaying the results in a variety of data Web controls..

2006-09-26 19:00:00   Source: Accessing and Updating Data in...   Tags: ASP.NET

Introducing a huMONGOus Database

Nowadays archiving, searching and processing the explosion of data generated in applications means coming up with nontraditional ways of dealing with the data. NoSQL solutions offer intriguing and unique ways of handling the volumes of data available to us. Additionally, 10Gen offers an open source distributed document-oriented solution called MongoDB.

2012-02-17 17:00:00   Source: Introducing a huMONGOus Database   Tags: Database

ASP.NET: How to Handle Relational Data in a Distributed Cache

Iqbal Khan discusses how developers handle data relationships while caching data, and shows through source code examples how those relationships can be mapped. The net effect is that the application doesn’t have to keep track of those relationships in the cache. Rather, the cache is aware of them and handles them correctly.

Create Data Classes

An application that creates a C# class to read/write data to/from an Access, SQLite, or XML database.
2011-03-04 11:13:00   Source: Create Data Classes   Tags: C#

Developing a Realtime Stockreader using WPF and Yahoo Finance Data

RealtimeSockreader is a desktop widget for viewing live stock data of your portfolio
2008-04-06 10:39:00   Source: Developing a Realtime Stockreader using WPF and Yahoo...   Tags: Examples

Caching Data with a Web Service in Enterprise Library

The Caching Application Block's provider mechanism lets you create a custom provider that stores cached data anywhere you want. It was this that made me wonder if it was possible to cache data within or through a web service, which would allow the provider to cache its data almost anywhere—remotely or locally—without having to write specific code that is directly integrated within Enterprise Library.

The principle is simple enough. Instead of having the backing store provider within the Caching Application Block interact directly with the backing store (the usual approach, as implemented in the Isolated Storage provider and Database provider), the backing store provider simply packages up the data and sends it to a web service..

2007-08-29 18:51:09   Source: Caching Data with a Web Service in...   Tags: ASP.NET Performance