https://www.developerfusion.com/t/ado.net/code/sort/popularity/ ADO.NET Sample code from Developer Fusion 2006-02-25T08:59:00.00Z http://www.developerfusion.com/code/4390/placing-results-from-datareader-into-an-array/ Placing results from DataReader into an Array 2004-02-04T11:32:00.00Z Since a connection cannot be used until a DataReader has been closed, it is quite often necessary to read the results of a DataReader into an array, then close the DataReader, then you can process the data in the array while you use the connection for something else. This shows you how. Edward Tanguay http://www.developerfusion.com/code/4596/how-to-access-a-mysql-database-with-net/ How to access a MySQL database with .NET 2004-04-01T14:47:00.00Z Demonstrates how to connect to a MySQL database with C#. Edward Tanguay http://www.developerfusion.com/code/4391/how-to-delete-records-with-sqlcommand/ How to delete records with SqlCommand 2004-02-04T11:36:00.00Z This code shows you how to delete records with an SQL statement and get the number of records deleted returned back as an integer. Edward Tanguay http://www.developerfusion.com/code/4638/how-to-run-through-multiple-datareader-results/ How to run through multiple DataReader results 2004-12-17T15:16:00.00Z You can save code by piling SQL statements into one SqlCommand and then getting a DataReader with multiple result sets. Edward Tanguay http://www.developerfusion.com/code/5282/transactions-made-easy-with-net-20/ Transactions made easy with .NET 2.0 2006-01-25T01:18:00.00Z One of the more significant improvement in .NET 2.0 is the transactions area. Now with a single line it becomes extremely easy to support transactional code blocks using the concept of “ambient” transaction thanks to TransactionScope in the System.Transactions namespace. Xavier Larrea http://www.developerfusion.com/code/5445/sql-data-provider-vbnet-class/ SQL Data Provider VB.NET Class 2006-02-25T08:59:00.00Z This class includes some useful methods for working with Misrosoft SQL Server in .NET simply and quickly. http://www.developerfusion.com/code/4597/rss-feed-helper-class/ RSS Feed Helper Class 2004-04-02T05:44:00.00Z A simple helper class to make generating an RSS feed a piece of cake - its the one we use on Developer Fusion too! James Crowley http://www.developerfusion.com/code/5264/database-independent-adonet-20/ Database Independent ADO.NET 2.0 2006-01-21T22:31:00.00Z ADO.NET 2 has new classes that makes it quite easy to write data-programs independent of the database engine. Learn how here. Xavier Larrea http://www.developerfusion.com/code/4266/how-to-create-pdf-files-from-aspnet-pages/ How to create PDF files from ASP.NET pages 2004-01-06T06:44:00.00Z How to create PDF files from ASP.NET pages with Crystal Reports without using Visual Studio.NET Edward Tanguay http://www.developerfusion.com/code/5223/using-ashx-files-to-retrieve-db-images/ Using ASHX files to retrieve DB images 2006-01-15T12:37:00.00Z Learn how to use the little-known Http Handler functionality of ASP.NET to serve images from a database. Harry Pierson