日期:2014-05-16 浏览次数:20517 次
SqlDbHelper.cs
001 |
using System;
|
002 |
using System.Collections.Generic;
|
003 |
using System.Text;
|
004 |
using System.Data;
|
005 |
using System.Data.SqlClient;
|
006 |
using System.Configuration;
|
007 |
?? |
008 |
namespace ADODoNETDemo
|
009 |
{ |
010 |
????/// <summary>
|
011 |
????/// 针对SQL Server数据库操作的通用类
|
012 |
????/// 作者:周公
|
013 |
????/// 日期:2009-01-08
|
014 |
????/// Version:1.0
|
015 |
????/// </summary>
|
016 |
????public class SqlDbHelper
|
017 |
????{
|