Skip to content
Igor Tkachev edited this page May 20, 2016 · 1 revision

Home / Data

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>
    <connectionStrings>
        <add
            name             = "DemoConnection"
            connectionString = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"
            providerName     = "System.Data.SqlClient" />
    </connectionStrings>
</configuration>
Clone this wiki locally