.NET news » Database Database Rss Feed

Beginning VB.NET Databases
Author: Thearon Willis
Average rating: 4.0 / 4
(4 reviews)
More .NET Database books
download

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.
10 Feb 2006, 23:41:57   Source: Ink And The Database   Tags: Tablet PC Database

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.
3 Feb 2006, 23:26:10   Source: Data Access for Partially Connected Applications   Tags: Database

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.

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.
3 Feb 2006, 03:11:50   Source: xPort Tools for .NET V 2.6 Released   Tags: Components Database

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.

Web control to generate database design documents in HTML

Just 200 lines of VB.NET to document your SQL Server databases.

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.
22 Jan 2006, 08:00:00   Source: The OO Database Advantage   Tags: Database

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.