posts - 77, comments - 54, trackbacks - 0, articles - 0
  IT博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

SQLHelper.cs

Posted on 2007-01-18 11:27 东人EP 阅读(3009) 评论(0)  编辑 收藏 引用 所属分类: .NET

// ===============================================================================
//  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

    }

}

只有注册用户登录后才能发表评论。