SQLHelper.cs

 

// ===============================================================================
//  Microsoft Data Access Application Block for .NET微软.NET数据访问程序块
//   http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp (可在此网页查看)
//
//  SQLHelper.cs
//
//  This file contains the implementations of the SqlHelper and SqlHelperParameterCache
//  classes. 这个文件实现了SqlHelper类和SqlHelperParameterCache类
// 其中SqlHelper类执行各种方式的数据操作处理,而SqlHelperParameterCache类则是获得存储过程的参数集合
//  For more information see the Data Access Application Block Implementation Overview. 
//  
// ===============================================================================
//  Copyright (C) 2000-2001 Microsoft Corporation
//  All rights reserved.
//  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
//  OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
//  LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
//  FITNESS FOR A PARTICULAR PURPOSE.
// ==============================================================================

using  System;
using  System.Data;
using  System.Xml;
using  System.Data.SqlClient;
using  System.Collections;


namespace  DataAccessTool
{
    
/// <summary>
    
/// The SqlHelper class is intended to encapsulate high performance, scalable best practices for 
    
/// common uses of SqlClient.
    
/// SqlHelper类用来封装数据处理
    
/// </summary>

    public sealed class SqlHelper
    
{
        
private utility methods & constructors private utility methods & constructors

        
ExecuteNonQuery ExecuteNonQuery

        
ExecuteDataSet ExecuteDataSet
        
        
ExecuteReader ExecuteReader

        
ExecuteScalar ExecuteScalar    

        
ExecuteXmlReader ExecuteXmlReader
    }


    
/// <summary>
    
/// SqlHelperParameterCache provides functions to leverage a static cache of procedure parameters, and the
    
/// ability to discover parameters for stored procedures at run-time.
    
/// SqlHelperParameterCache支持函数来实现静态缓存存储过程参数,并支持在运行时得到存储过程的参数
    
/// </summary>

    public sealed class SqlHelperParameterCache            
    
{
        
private methods, variables, and constructors private methods, variables, and constructors

        
caching functions caching functions

        
Parameter Discovery Functions Parameter Discovery Functions

    }

}

你可能感兴趣的:(SQLHelper.cs)