.NET news » Database Database Rss Feed

download

Data Joins The Team: Introducing Visual Studio 2005 Team Edition for Database Professionals

Database development has gotten easier, thanks to Visual Studio 2005 Team Edition for Database Professionals (or DB Pro edition, for short). If you need to create, manage, or build solutions that connect to SQL Server, this tool is for you.
DB Pro edition provides a number of features to make managing databases easier. As a member of Visual Studio 2005 Team Suite, DB Pro edition works in conjunction with Team Foundation Server's source code control feature to manage database changes just as you manage your source code. DB Pro edition supports sandbox development of databases, and it includes tools for database comparison, data generation, unit testing, and database deployment. But what is most compelling about DB Pro edition is using all of its features together as part of a holistic, database development life cycle.

ADO.NET vNext Part 2: Using the Object Services Layer

The Entity Data Model and ADO.NET vNext let you deal with tabular data as objects, eliminating much of the effort endemic to older data-retrieval and modification code.
8 Dec 2006, 12:04:48   Source: ADO.NET vNext Part 2: Using the Object Services Layer   Tags: Database

Concurrent model in ADO.NET, ways those allow to negotiate disconnected model restrictions

The most popular instrument to access database data for .NET applications is ADO.NET. This set of components contains three main classes those are used to manipulate and store data: DataReader, DataSet and DataAdapter. DataReader is only able to read data and can't work as data source for data-aware components like DataGridView; DataSet provides all interfaces to be a data source but disconnected model considers some restrictions that can become important for some kind of applications, especially for desktop programs that work under multiuser concurrent environment and change database data actively. Below we consider main restrictions and popular ways to solve them; non standard solutions are considered also.
6 Dec 2006, 06:25:09   Source: Concurrent model in ADO.NET, ways those allow to...   Tags: Database

Data Points: Column Expressions, DataRelations, and Computations

This month John Papa fields some of his favorite questions regarding data manipulation with ADO.NET.
21 Nov 2006, 18:00:00   Source: Data Points: Column Expressions, DataRelations, and...   Tags: Database

Application to migrate data between different environments using the ADO.NET 2.0 SqlBulkCopy

This article explains how to migrate data between different SQL Server environments.
13 Nov 2006, 15:53:00   Source: Application to migrate data between different...   Tags: Database

A Lap Around SQL Server 2005 Compact Edition

With a new name, new capabilities, and a new focus, the product formerly called SQL Server Mobile Edition expands its reach to small-footprint desktop applications—and it's free!
8 Nov 2006, 20:19:26   Source: A Lap Around SQL Server 2005 Compact Edition   Tags: Mobile Database

Take a Leap Forward with ADO.NET vNext (Part 1)

ADO.NET vNext is a leap forward in database programming, using mapping files to isolate your applications from relational database schema changes, and letting you choose whether to deal with data directly as objects or as tabular data.
3 Nov 2006, 13:18:08   Source: Take a Leap Forward with ADO.NET vNext (Part 1)   Tags: Database

Dynamic XML from SQL Server

"Efficiency in simplicity", that's what XML is all about. XML is great for information exchange because of its simple flat file structure and user defined tags. For any application to interact with another either an complex marshalling code would be required or a simple implementation of XML would suffice. MS SQL gives us the advantage of generating dynamic XML in our data queries itself. In this article we will see some of the common used SQL XML queries.
3 Nov 2006, 08:52:05   Source: Dynamic XML from SQL Server   Tags: Database XML

When Snapshot Isolation Helps and When It Hurts

The benefits of SQL Server 2005's new snapshot isolation feature are well known, but SQL Server developers also need to understand the downstream ramifications of snapshot isolation.
2 Nov 2006, 15:05:06   Source: When Snapshot Isolation Helps and When It Hurts   Tags: Database

Application to migrate data between different environments using ADO.NET 2.0 and C# windows forms

This article explains how to migrate data between different environments
24 Oct 2006, 12:00:00   Source: Application to migrate data between different...   Tags: Database