【侯壘 】SQL資料庫操作類

iDotNetSpace發表於2008-06-10

SQL資料庫操作類

我把資料庫操作類整理了一下,它包含了常用的資料庫操作,由三種方式:簡單的SQL拼接字串的形式,SQL語句使用引數的形式和儲存過程的形式,每種形式均有五個方法,並且都有事務.,可以直接呼叫.程式碼如下:

  1//======================================================================
  2//
  3//        Copyright (C) 2007-2008 三月軟體工作室    
  4//        All rights reserved
  5//
  6//        filename :SQLDataBase
  7//        description :
  8//
  9//        created by 侯壘 at  04/14/2008 18:33:32
 10//        http://houleixx.cnblogs.com
 11//
 12//======================================================================
 13
 14using System;
 15using System.Collections;
 16using System.Collections.Specialized;
 17using System.Data;
 18using System.Data.SqlClient;
 19using System.Configuration;
 20using System.Data.Common;
 21
 22namespace SQLDataBase
 23{
 24    /// 
 25    /// 資料訪問基礎類(基於SQLServer)
 26    /// 

 27    class SQLDataBase
 28    {
 29        protected static string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
 30        public SQLDataBase()
 31        {
 32
 33        }

 34
 35        執行簡單SQL語句

相關文章