C# ADO.NET協助類,

來源:互聯網
上載者:User

C# ADO.NET協助類,

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace DBComm{    static class DBCommand    {        public class DBParameters        {            private SqlCommand m_owner = null;            public DBParameters(SqlCommand owner)            {                m_owner = owner;            }            public SqlParameterCollection P()            {                return m_owner.Parameters;            }        };        public static bool BulkToDB(string tabname, DataTable dt, params string[] destColumnNames)        {            bool bRet = false;            do            {                    if (dt == null)                        break;                    if (dt.Rows.Count == 0)                        break;                    using (SqlConnection conn = DBConn.GetConn())                    {                        if (conn == null)                            break;                        SqlBulkCopy bulkcopy = new SqlBulkCopy(conn);                        if (bulkcopy == null)                            break;                        bulkcopy.DestinationTableName = tabname;                        bulkcopy.BulkCopyTimeout = 30;                        if (destColumnNames.Length == 0)                        {                            foreach (DataColumn col in dt.Columns)                                bulkcopy.ColumnMappings.Add(col.ColumnName, col.ColumnName);                        }                        else                        {                            if (destColumnNames.Length == dt.Columns.Count)                            {                                for (int i = 0; i < destColumnNames.Length; ++i)                                {                                    bulkcopy.ColumnMappings.Add(dt.Columns[i].ColumnName, destColumnNames[i]);                                }                            }                        }                        bulkcopy.BatchSize = dt.Rows.Count;                        try                        {                            bulkcopy.WriteToServer(dt);                        }                        catch (System.Exception e)                        {                            string err = e.Message;                            break;                        }                        finally                        {                            bulkcopy.Close();                        }                    }                    bRet = true;            } while (false);            return bRet;        }        public static DBParameters ExecProcNonQuery(string proc_name, object[] paraValues)        {            using (SqlConnection conn = DBConn.GetConn())            {                SqlCommand cmd = new SqlCommand();                cmd.Connection = conn;                cmd.CommandType = CommandType.StoredProcedure;                cmd.CommandText = proc_name;                AddInParaValues(cmd, paraValues);                cmd.ExecuteNonQuery();                return new DBParameters(cmd);            }        }        public delegate T[] FillValues<T>(SqlDataReader reader);        public static T[] QuerySomes<T>(string sql, FillValues<T> fill)        {            using (SqlConnection conn = DBConn.GetConn())            {                T[] result = null;                SqlCommand cmd = new SqlCommand();                cmd.Connection = conn;                cmd.CommandText = sql;                SqlDataReader reader = null;                lock (reader = cmd.ExecuteReader())                {                    try                    {                        result = fill(reader);                    }                    catch (Exception e)                    {                        throw new Exception(e.StackTrace);                    }                    finally                    {                        reader.Close();                    }                }                return result;            }        }        public delegate object FillValue(SqlDataReader reader);        public static object QuerySome(string sql, FillValue fill)        {            using (SqlConnection conn = DBConn.GetConn())            {                object result = null;                SqlCommand cmd = new SqlCommand();                cmd.Connection = conn;                cmd.CommandText = sql;                SqlDataReader reader = null;                lock (reader = cmd.ExecuteReader())                {                    try                    {                        result = fill(reader);                    }                    catch (Exception e)                    {                        throw new Exception(e.StackTrace);                    }                    finally                    {                        reader.Close();                    }                }                return result;            }        }        public static object FillResultValue(SqlDataReader reader)        {            object o = null;            if (reader.Read())            {                o = reader.GetValue(0);            }            return o;        }        public static bool QueryBoolean(string sql)        {            return Convert.ToBoolean(QuerySome(sql, new FillValue(FillResultValue)));        }        public static byte[] QueryBytes(string sql)        {            return (byte[])(QuerySome(sql, new FillValue(FillResultValue)));        }        public static int QueryInteger(string sql)        {            return Convert.ToInt32(QuerySome(sql, new FillValue(FillResultValue)));        }        public static string QueryStr(string sql)        {            return QuerySome(sql, new FillValue(FillResultValue)) as string;        }        private static string[] FillStrsValue(SqlDataReader reader)        {            List<string> lststr = new List<string>();            while (reader.Read())            {                lststr.Add(reader.GetString(0));            }            return lststr.ToArray();        }        public static string[] QueryStrs(string sql)        {            return QuerySomes(sql, new FillValues<string>(FillStrsValue));        }        private static bool[] FillBooleansValue(SqlDataReader reader)        {            List<bool> lstbool = new List<bool>();            while (reader.Read())            {                lstbool.Add(reader.GetBoolean(0));            }            return lstbool.ToArray();        }        public static bool[] QueryBooleans(string sql)        {            return QuerySomes(sql, new FillValues<bool>(FillBooleansValue));        }        public static void ExecCmd(string sql)        {            using (SqlConnection conn = DBConn.GetConn())            {                SqlCommand cmd = new SqlCommand();                cmd.Connection = conn;                cmd.CommandText = sql;                cmd.ExecuteNonQuery();            }        }        /// <summary>        /// 擷取預存程序的參數列表        /// </summary>        /// <param name="proc_Name">預存程序名稱</param>        /// <returns>DataTable</returns>        private static DataTable GetParameters(SqlConnection conn, string proc_Name)        {            SqlCommand comm = new SqlCommand("dbo.sp_sproc_columns", conn);            comm.CommandType = CommandType.StoredProcedure;            comm.Parameters.AddWithValue("@procedure_name", (object)proc_Name);            SqlDataAdapter sda = new SqlDataAdapter(comm);            DataTable dt = new DataTable();            sda.Fill(dt);            return dt;        }        /// <summary>        /// 為 SqlCommand 添加參數及賦值        /// </summary>        /// <param name="comm">SqlCommand</param>        /// <param name="paraValues">參數數組(必須遵循預存程序參數列表的順序)</param>        private static void AddInParaValues(SqlCommand comm, params object[] paraValues)        {            using (SqlConnection conn = DBConn.GetConn())            {                comm.Parameters.Add(new SqlParameter("@RETURN_VALUE", SqlDbType.Int));                comm.Parameters["@RETURN_VALUE"].Direction = ParameterDirection.ReturnValue;                if (paraValues != null)                {                    DataTable dt = GetParameters(conn, comm.CommandText);                    int i = 0;                    foreach (DataRow row in dt.Rows)                    {                        string key = row[3].ToString();                        if (key != "@RETURN_VALUE")                        {                            int value = int.Parse(row[4].ToString());                            if (value == 1)                            {                                comm.Parameters.AddWithValue(key, paraValues[i]);                            }                            else if (value == 2)//value為2則是輸出參數                            {                                comm.Parameters.AddWithValue(key, paraValues[i]).Direction = ParameterDirection.Output;                                //comm.Parameters[key].Direction = ParameterDirection.Output;                            }                            comm.Parameters[key].Size = Convert.ToInt32(row[7].ToString());                            i++;                        }                    }                }            }        }    }}
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;namespace DBComm{    class DBConn    {        private static string m_connstr;        public static string ConnString        {            get { return m_connstr; }            private set { m_connstr = value; }        }        static DBConn()         {            SqlConnectionStringBuilder connStr = new SqlConnectionStringBuilder();            connStr.DataSource = ".";            connStr.InitialCatalog = "test";            connStr.IntegratedSecurity = true;            connStr.Pooling = true; //開啟串連池            connStr.MinPoolSize = 0; //設定最小串連數為0            connStr.MaxPoolSize = 100; //設定最大串連數為100                         connStr.ConnectTimeout = 10; //設定逾時時間為10秒            ConnString = connStr.ConnectionString;            //ConnectDB(ConnString);        }        public static SqlConnection GetConn()        {            SqlConnection conn = new SqlConnection(ConnString);            conn.Open();            return conn;        }    }}
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;using System.Data;namespace DBComm{    static class DBTableSource    {        public static DataTable GetSource(SqlConnection conn, string strsql)        {            DataTable dt = null;            SqlCommand cmd = null;            SqlDataAdapter ad = null;            try            {                lock (dt = new DataTable())                {                    if (conn is SqlConnection)                    {                        cmd = new SqlCommand(strsql, conn);                        ad = new SqlDataAdapter((SqlCommand)cmd);                    }                    dt.Clear();                    ad.Fill(dt);                }            }            catch (Exception e)            {                throw e;            }            return dt;        }        public static DataTable Source(string strsql)        {            using (SqlConnection conn = DBConn.GetConn())            {                return GetSource(conn, strsql);            }        }    }}




C語言中->是什?

->是一個整體,它是用於指向結構體、C++中的class等含有子資料的指標用來取子資料。換種說法,如果我們在C語言中定義了一個結構體,然後申明一個指標指向這個結構體,那麼我們要用指標取出結構體中的資料,就要用到“->”.
舉個例子:
struct Data
{
int a,b,c;
}; /*定義結構體*/
struct Data * p;/*定義結構體指標*/
struct Data A = {1,2,3};/*聲明變數A*/
int x;/*聲明一個變數x*/
p = &A ; /*讓p指向A*/
x = p->a;/*這句話的意思就是取出p所指向的結構體中包含的資料項目a賦值給x*/
/*由於此時p指向A,因而 p->a == A.a,也就是1*/

對於一開始的問題 p = p->next;這應該出現在C語言的鏈表,這裡的next應該是一個與p同類型的結構體指標,其定義格式應該是:
struct Data
{
int a;
struct Data * next;
};/*定義結構體*/
…………
main()
{
struct Data * p;/*聲明指標變數p*/
……
p = p->next;/*將next中的值賦給p*/
}
鏈表指標是C語言的一個痛點,但也是重點,學懂了非常有用。要仔細講就必須先講變數、指標。
什麼是變數?所謂變數,不要淺顯的認為會變得量就是變數。套用我們院長的問話:“教室變不變?”變,因為每天有不同的人在裡面上課,但又不變,因為教室始終在那,沒有變大或變小。這就是變數:有一個不變的地址和一塊可變的儲存空間。正常情況下,我們只看到變數這個房間裡面的東西,也就是其內容,但不會關注變數的地址,但是C語言的指標,就是這個房間的地址。我們聲明變數就相當於蓋了間房子存放東西,我們可以直接觀看房子裡的東西,而聲明指標,就是相當於獲得了一個定位器,當用指標指向某個變數時,就是用指標給變數定位,以後我們就可以用指標找到他所“跟蹤”的變數並可以獲得裡面的內容。
那結構體呢?結構體就相當於是有好幾個房子組成的別墅,幾個房子綁定在一起使用。假設現在有很多這種別墅分布在一個大迷宮裡,每間別墅裡都有一間房子。裡面放了另一個別墅的位置資訊,現在你手拿定位器找到了第一棟別墅,從裡面得到了你想要的東西(鏈表的資料部分),然後把下一棟別墅的位置計入你的定位器(p = p->next),再走向下一棟別墅……如此走下去,知道走到某地下一棟別墅資訊沒有了(p->next == NULL),你的旅行結束。這就是鏈表一次遍曆的過程。現在你能明白 p=p->next的含義了吧!
寫了這麼多。希望你能明白。
如果想學好c和C++,鏈表和指標必須熟練掌握!
 
C語言中->是什?

->是一個整體,它是用於指向結構體、C++中的class等含有子資料的指標用來取子資料。換種說法,如果我們在C語言中定義了一個結構體,然後申明一個指標指向這個結構體,那麼我們要用指標取出結構體中的資料,就要用到“->”.
舉個例子:
struct Data
{
int a,b,c;
}; /*定義結構體*/
struct Data * p;/*定義結構體指標*/
struct Data A = {1,2,3};/*聲明變數A*/
int x;/*聲明一個變數x*/
p = &A ; /*讓p指向A*/
x = p->a;/*這句話的意思就是取出p所指向的結構體中包含的資料項目a賦值給x*/
/*由於此時p指向A,因而 p->a == A.a,也就是1*/

對於一開始的問題 p = p->next;這應該出現在C語言的鏈表,這裡的next應該是一個與p同類型的結構體指標,其定義格式應該是:
struct Data
{
int a;
struct Data * next;
};/*定義結構體*/
…………
main()
{
struct Data * p;/*聲明指標變數p*/
……
p = p->next;/*將next中的值賦給p*/
}
鏈表指標是C語言的一個痛點,但也是重點,學懂了非常有用。要仔細講就必須先講變數、指標。
什麼是變數?所謂變數,不要淺顯的認為會變得量就是變數。套用我們院長的問話:“教室變不變?”變,因為每天有不同的人在裡面上課,但又不變,因為教室始終在那,沒有變大或變小。這就是變數:有一個不變的地址和一塊可變的儲存空間。正常情況下,我們只看到變數這個房間裡面的東西,也就是其內容,但不會關注變數的地址,但是C語言的指標,就是這個房間的地址。我們聲明變數就相當於蓋了間房子存放東西,我們可以直接觀看房子裡的東西,而聲明指標,就是相當於獲得了一個定位器,當用指標指向某個變數時,就是用指標給變數定位,以後我們就可以用指標找到他所“跟蹤”的變數並可以獲得裡面的內容。
那結構體呢?結構體就相當於是有好幾個房子組成的別墅,幾個房子綁定在一起使用。假設現在有很多這種別墅分布在一個大迷宮裡,每間別墅裡都有一間房子。裡面放了另一個別墅的位置資訊,現在你手拿定位器找到了第一棟別墅,從裡面得到了你想要的東西(鏈表的資料部分),然後把下一棟別墅的位置計入你的定位器(p = p->next),再走向下一棟別墅……如此走下去,知道走到某地下一棟別墅資訊沒有了(p->next == NULL),你的旅行結束。這就是鏈表一次遍曆的過程。現在你能明白 p=p->next的含義了吧!
寫了這麼多。希望你能明白。
如果想學好c和C++,鏈表和指標必須熟練掌握!
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.