ADO.NET 2.0

SQLSaturday - SQL Server Data Access Tips and Techniques with David Hayden - Tampa Florida

posted @ Sunday, February 10, 2008 12:07 PM | Feedback (0)

Creating Data Access Layer Using DbProviderFactories and DbProviderFactory

posted @ Monday, October 08, 2007 6:00 PM | Feedback (0)

ADO.NET Entity Framework - When To Use It vs. Linq to SQL

posted @ Sunday, April 29, 2007 11:30 PM | Feedback (0)

ADO.NET Entity Framework Cut From .NET 3.5 and Visual Studio Orcas

posted @ Sunday, April 29, 2007 10:31 AM | Feedback (0)

Reading Connection Strings in Web.Config and App.Config and Enterprise Library DAAB Settings

posted @ Thursday, February 22, 2007 8:31 PM | Feedback (0)

Using Enterprise Library DAAB and Microsoft Access 2007 via ODBC and OLEDB - Connection Strings and ADO.NET

The Enterprise Library Data Access Application Block can connect to any database that has a .NET Data Provider. One of the common questions is - “Does Enterprise Library support Microsoft Access?“ The answer is yes! You can use OLEDB or ODBC to connect to the Microsoft Access Database using the Data Access Application Block. In this article I show both ways...

posted @ Sunday, January 28, 2007 12:16 PM | Feedback (0)

Caching the Stored Procedure Parameters Discovered Using SqlCommandBuilder.DeriveParameters

posted @ Friday, November 03, 2006 3:43 PM | Feedback (0)

SqlCommandBuilder.DeriveParameters - Get Parameter Information for a Stored Procedure - ADO.NET Tutorials

posted @ Wednesday, November 01, 2006 3:36 PM | Feedback (0)

Get List of Tables in an Access Database - ADO.NET Tutorials

posted @ Sunday, October 01, 2006 6:32 PM | Feedback (0)

Enterprise Library 2.0 DAAB - Retrieving PK and Timestamp When Inserting New Record

I was answering a number of questions on the Enterprise Library 2.0 DAAB Message Board today, and this one was worth a blog post since the question comes up a lot in various forums. Although I am showing this using Enterprise Library 2.0 DAAB, the answer applies to SqlClient as well. Let's say you're inserting a new customer row in the Customers Table and you want to retrieve the PK and Timestap ( Rowversion ) of the row..

posted @ Wednesday, July 26, 2006 1:53 PM | Feedback (0)

Saving and Displaying Photos in SQL Server using ASP.NET and FileUpload Control

The question about how to store and display photos in SQL Server using ASP.NET came up in the MSDN Forums, so I thought I would write a tutorial on it. I wrote a very similar tutorial on this subject using Enterprise Library 2.0 DAAB, called Saving and Retrieving Images From SQL Server Using DAAB, but it didn't discuss how to display photos using ASP.NET. In this tutorial I will show you how to store the photo uploaded from a FileUpload Control into SQL Server using the SQL Server Managed Provid

posted @ Tuesday, July 25, 2006 12:13 AM | Feedback (0)

TableAdapters : DataTable ConstraintException Was Unhandled - Column is Constrained to be Unique - Value is Present

posted @ Monday, July 17, 2006 6:33 PM | Feedback (0)

DataTable and DataColumn Expressions in ADO.NET - Calculated Columns

A question came up in the MSDN forums as to how to handle Data Column Expressions within a DataTable in ADO.NET. The expression syntax available to create calculated columns is probably much richer than you might think if you don't play around a lot with the Expression Property of the DataColumn. The question was on how to...

posted @ Sunday, July 09, 2006 12:05 AM | Feedback (0)

LinQ for SQL ( DLinq ) and LinQ for Entities for .NET 3.0 Framework? - O/R Mapping Tools

posted @ Monday, June 12, 2006 2:56 PM | Feedback (0)

Castle ActiveRecord - Active Record Pattern Built on NHibernate - ASP.NET C#

posted @ Monday, June 12, 2006 12:15 PM | Feedback (0)

Import / Export Excel Spreadsheet Data into SQL Server Database Table Using SqlBulkCopy

posted @ Wednesday, May 31, 2006 7:44 PM | Feedback (0)

Reading Excel Worksheet and Column Schema Information Using ADO.NET 2.0 and GetSchema

posted @ Wednesday, May 31, 2006 5:23 PM | Feedback (0)

Reading and Writing Excel Spreadsheets / Worksheets Using ADO.NET C# DbProviderFactory

posted @ Friday, May 26, 2006 4:26 PM | Feedback (0)

Saving and Retrieving Images From SQL Server Using DAAB

posted @ Friday, May 19, 2006 11:16 AM | Feedback (1)

Reading XML Data Type into XmlDocument Using ADO.NET - SQL Server 2005 Tutorials

posted @ Thursday, May 04, 2006 5:55 PM | Feedback (0)

Finding Database Servers / SQL Server Instances on Local Network - GetDataSources - DbDataSourceEnumerator

posted @ Friday, April 14, 2006 6:40 PM | Feedback (0)

Access Deleted Row Columns / Information in DataTable - ADO.NET Tips

posted @ Sunday, April 02, 2006 10:00 PM | Feedback (0)

GetSchema and DbProviderFactories - List of Tables in a Database

posted @ Wednesday, March 29, 2006 6:07 PM | Feedback (0)

Enterprise Library 2.0 DAAB and ADO.NET 2.0 Batch Updates Feature

posted @ Tuesday, March 14, 2006 9:54 PM | Feedback (0)

ADO.NET 2.0 Tutorial : SqlBulkCopy Revisited for Transferring Data at High Speeds

posted @ Wednesday, March 08, 2006 7:16 PM | Feedback (0)

Retrieve Identity Column Value After Inserting Record in Database Table - SQL Server - Free ADO.NET Tutorials

posted @ Thursday, February 16, 2006 6:03 PM | Feedback (0)

DataView Sorting Filtering and DataBinding in ADO.NET 2.0 - Converting DataView to Table - ADO.NET Tutorials

posted @ Saturday, February 11, 2006 12:46 PM | Feedback (0)

Copy a DataTable in ADO.NET 2.0 - Free ADO.NET Tutorials

posted @ Tuesday, February 07, 2006 6:53 PM | Feedback (0)

Insert Update SQL Query Code Generator - Information_Schema.Tables - GetSchema

posted @ Wednesday, February 01, 2006 9:27 PM | Feedback (0)

Get List of Tables in a Database - Query INFORMATION_SCHEMA.Tables - ADO.NET

posted @ Tuesday, January 31, 2006 4:41 PM | Feedback (0)

SqlCommandBuilder and DbCommandBuilder - Generating Update Insert Delete Queries From Select Query

posted @ Saturday, January 21, 2006 6:52 PM | Feedback (0)

SCOPE_IDENTITY() vs. @@IDENTITY - Retrieving Identity for Most Recently Added Row in Table

posted @ Tuesday, January 17, 2006 2:27 PM | Feedback (0)

GetSchema - DbConnection.GetSchema in ADO.NET 2.0 - Retrieve Databases Tables Columns Views etc. from Database Connection

posted @ Sunday, January 15, 2006 7:48 PM | Feedback (0)

SqlBulkCopy - Copy Table Data Between SQL Servers at High Speeds - ADO.NET 2.0 New Feature

posted @ Friday, January 13, 2006 12:20 AM | Feedback (0)

Batch Updates in ADO.NET 2.0 for Improved Performance

posted @ Thursday, January 05, 2006 5:28 PM | Feedback (0)

Typed DataSet and Sorting Filtering and Searching a DataTable in ADO.NET - Custom Expressions - ShoppingCart DataSet

posted @ Sunday, January 01, 2006 9:53 PM | Feedback (0)

Expert ASP.NET 2.0 Advanced Application Design Book Review - Data Access Layer

posted @ Thursday, December 15, 2005 12:50 PM | Feedback (0)

DataTable - Load from IDataReader - CreateDataReader - ReadXml WriteXml - Free ADO.NET Tutorials

posted @ Wednesday, December 14, 2005 7:29 PM | Feedback (0)

System.Transactions for Sql Server 2000 and Sql Server 2005 - TransactionScope and SqlTransaction

posted @ Friday, December 09, 2005 2:05 PM | Feedback (0)

Database Explorer and Code Generator - Stored Procedures and SqlConnectionStringBuilder

posted @ Tuesday, December 06, 2005 1:34 PM | Feedback (0)

Microsoft Professional Developers Conference (PDC) 2005 - Download Powerpoint Presentations Online

posted @ Friday, November 18, 2005 9:51 PM | Feedback (0)

ObjectDataSource Control and Concurrency in Multiuser ASP.NET Web Applications - OverwriteChanges - CompareAllValues

posted @ Wednesday, November 16, 2005 4:28 PM | Feedback (0)

Extending the ASP.NET 2.0 PayPal Commerce Starter Kit - InventoryProvider for Inventory Management

posted @ Sunday, November 13, 2005 10:24 PM | Feedback (0)

Enterprise Library for .NET Framework 2.0 November CTP - DAAB No Longer Requires Configuration Application Block

posted @ Sunday, November 13, 2005 9:20 PM | Feedback (0)

DataAdapter and Database Connections and Connection Pooling - Part 2

posted @ Friday, November 04, 2005 1:49 PM | Feedback (0)

DataAdapter and Database Connections - Performance and Connection Pooling

posted @ Thursday, November 03, 2005 6:47 PM | Feedback (0)

.NET 2.0 Provider Model - Polymorphism - Factory Method - ADO.NET 2.0 Data Providers

posted @ Sunday, October 30, 2005 7:22 PM | Feedback (0)

Pro ADO.NET 2.0 Book Review by David Hayden

posted @ Thursday, October 27, 2005 12:07 PM | Feedback (0)

Builder Design Pattern Part I - DBConnectionStringBuilder and SqlConnectionStringBuilder in ADO.NET 2.0

posted @ Tuesday, October 25, 2005 1:59 PM | Feedback (0)

SQL Server Transaction Savepoints - Rollback Part of Transaction - SqlTransaction.Save - SqlTransaction.Rollback

posted @ Saturday, October 15, 2005 11:01 AM | Feedback (0)

Sql Server Transactions - ADO.NET 2.0 - Commit and Rollback - Using Statement - IDisposable

posted @ Friday, October 14, 2005 11:17 AM | Feedback (0)

Pro ADO.NET 2.0 and Pro ASP.NET 2.0 with C# 2005 Books

posted @ Saturday, October 01, 2005 2:20 PM | Feedback (0)

101 Samples for Visual Studio 2005 in C# or VB: Base Class Libraries - Data Access - Web Development - Windows Forms

posted @ Saturday, August 13, 2005 8:22 PM | Feedback (0)

GrokTalks - 10 Minute Micro-Presentations by Microsoft Regional Directors

posted @ Monday, June 27, 2005 5:20 PM | Feedback (0)

New DataSet Features in ADO.NET 2.0 - Improved Performance - Binary Serialization Format Option

posted @ Monday, November 08, 2004 7:42 PM | Feedback (1)

Using Visual Studio 2005 to Build Data-Driven ASP.NET 2.0 - Presentation Slides

posted @ Wednesday, October 27, 2004 8:16 PM | Feedback (1)

ADO.NET 2.0 - Data Access in ASP.NET 2.0 - SqlDataSource - AccessDataSource - XmlDataSource - ObjectDataSource - DataSetDataSource - Sarasota Florida

posted @ Thursday, July 22, 2004 9:29 AM | Feedback (1)

ADO.NET 2.0 Feature Matrix - Provider Model, SqlClient Enhancements, Connection Pooling Enhancements, Asynchronous Commands, Etc. - Florida

posted @ Thursday, July 08, 2004 7:25 AM | Feedback (1)

Main

News

Green Tea

.NET Development

Enterprise Library

Patterns & Practices