打印本文 打印本文 关闭窗口 关闭窗口
第二课 SqlConnection对象(翻译)
作者:武汉SEO闵涛  文章来源:敏韬网  点击数9510  更新时间:2007/11/14 13:12:47  文章录入:mintao  责任编辑:mintao

本文档由李欣蔚(nirvana_li)翻译自http://www.csharp-station.com/,转载请注名出处!
更新日期2006-2-14

Lesson 02: The SqlConnection Object

This lesson describes the SqlConnection object and how to connect to a data base.  Here are the objectives of this lesson:

这节课描述了SqlConnection对象,和如何连接数据库。以下是本课目标

  • Know what connection objects are used for.
  • Learn how to instantiate a SqlConnection object.
  • Understand how the SqlConnection object is used in applications.
  • Comprehend the importance of effective connection lifetime management.
  • 知道连接对象用来干什么
  • 学习如何初始化SqlConnection对象
  • 了解SqlConnection对象如何在应用程序中使用
  • 理解有效连接生命周期管理的重要性

Introduction

引入

The first thing you will need to do when interacting with a data base is to create a connection.  The connection tells the rest of the ADO.NET code which data base it is talking to.  It manages all of the low level logic associated with the specific data base protocols.  This makes it easy for you because the most work you will have to do in code is instantiate the connection object, open the connection, and then close the connection when you are done.  Because of the way that other classes in ADO.NET are built, sometimes you don''''t even have to do that much work.

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]  ...  下一页 >> 

打印本文 打印本文 关闭窗口 关闭窗口