Close

BLToolkit.NET

Business Logic Toolkit for .NET www.bltoolkit.net
  Close.cs
using System;
using NUnit.Framework;
using BLToolkit.Data;

namespace HowTo.Data
{
    [TestFixture]
    public class Close
    {
        [Test]
        public void Test1()
        {
            DbManager db = new DbManager();

            try
            {
                // ...
            }
            finally
            {
                if (db != null)
                    db.Close();
            }
        }

        // Consider using the C# using statement instead.
        //
        [Test]
        public void Test2()
        {
            using (DbManager db = new DbManager())
            {
                // ...
            }
        }
    }
}
App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add
            key   = "ConnectionString"
            value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/>
    </appSettings>
</configuration>
Create.sql script
 
© 2010 www.bltoolkit.net
[email protected]