.NET news » Database 
Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference)
Author: Anne Boehm
Average rating: (0 reviews)
More .NET Database books
The Baker's Dozen: 13 Productivity Tips for ADO.NET 2.0
This installment of "The Baker's Dozen" presents a variety of tips and techniques to become productive with data handling techniques using ADO.NET 2.0 in Visual Studio 2005.
16 Feb 2006, 04:39:17 Source: The Baker's Dozen: 13 Productivity Tips for ADO.NET 2.0
Tags: Database
Ink And The Database
Unless your battery is really, really good, you'll eventually want to store your Ink. Simple file storage or XML serialization is sometimes sufficient, but usually, you'll want to move Ink into and out of a relational database. Here's how.
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.
Figure Out the Default Value of Stored Procedure Parameters
When working with the Microsoft SQL JDBC driver, you cannot invoke a stored procedure without specifying all the parameters, including the optional parameters that have default values. Learn how to fix that problem here.
3 Feb 2006, 12:39:00 Source: Figure Out the Default Value of Stored Procedure Parameters
Tags: Database
Examples
C#
xPort Tools for .NET V 2.6 Released
xPort Tools for .NET is a 100% managed .NET component, which allows develop applications capable to provide extremely fast export of the ADO.NET DataSet/DataTable/DataView into the native Microsoft Excel, Microsoft Excel XML, CSV or HTML formats without using Excel itself or any additional tools and providers. xPort Tools for .NET provides fast and simple way to transfer your data with the minimum efforts.
Using Query Notifications in .NET 2.0 to handle ad-hoc data refreshes
Query Notification in SQL Server 2005 solves the problem of having to maintain a polling database to get the updated data. The new notification service of SQL Server 2005 can perform this amazing task of notifying a .NET code when any DML operations are performed to a specified table.
2 Feb 2006, 07:02:00 Source: Using Query Notifications in .NET 2.0 to handle ad-hoc...
Tags: Database
C#
Examples
Web control to generate database design documents in HTML
Just 200 lines of VB.NET to document your SQL Server databases.
24 Jan 2006, 21:14:00 Source: Web control to generate database design documents in HTML
Tags: VB.NET
Examples
Database
The OO Database Advantage
Here's a question: If you write your application's code in an OO language - such as C#, VB.NET, or managed C++ - why not write database query and update code in the same language? It would certainly make life simpler, wouldn't it? At the very least, you'd only have to hold one language in your head - not your programming language and SQL.
Online Article: The Baker's Dozen: 13 Productivity Tips for ADO.NET 2.0
Online Article: The Baker's Dozen: 13 Productivity Tips for ADO.NET 2.0
This installment of "The Baker's Dozen" presents a variety of tips and techniques to become productive with data handling techniques using ADO.NET 2.0 in Visual Studio 2005. ADO.NET 2.0 is faster than the first version of ADO.NET; in some instances, significantly faster. While many view ADO.NET 2.0 as more evolutionary than revolutionary, it provides many functions to give developers greater control over data access and data manipulation. It also leverages the new database capabilities in SQL Server 2005. In addition, ADO.NET 2.0 simplifies the creation of multiple-database solutions.
3 Jan 2006, 02:00:00 Source: Online Article: The Baker's Dozen: 13 Productivity Tips...
Tags: Database
Improve performance using ADO.NET 2.0 batch update feature
When you use SqlDataAdapter for performing updates, the SqlDataAdapter propagates the updates one by one. That means if there are 100 rows to be updated the SqlDataAdapter will execute 100 separate operations against the database. As you might have guessed this is not efficient while dealing with large number of rows. Fortunately SqlDataAdapter allows you to execute updates in batches. You can specify the batch size i.e. number of rows to be treated as a single batch via UpdateBatchSize property.
19 Dec 2005, 02:00:00 Source: Improve performance using ADO.NET 2.0 batch update feature
Tags: Database
Performance

