C#winfrom最簡DBHelp(資料庫連接操作)

來源:互聯網
上載者:User

標籤:ring   class   TE   參考   span   source   傳回值   方法   help   

代碼如下:

//需引用命名空間using System.Data;using System.Data.SqlClient;  class DBHelper    {        //定義資料庫連接語句,串連語句書寫方法參考(文章最後)        public static string connstr = "Data Source=.;Initial Catalog=MobileDB;Integrated Security=True";       //建立資料庫連接對象         public static SqlConnection conn = new SqlConnection (connstr);        //定義datatable查詢方法,返回table        public static DataTable Getdatatable(string sqlstr)        {            //建立databale對象            DataTable table = new DataTable ();            //建立配接器物件            SqlDataAdapter adp = new SqlDataAdapter (sqlstr ,conn);            //資料填充            adp.Fill (table);            return table ;        }        //定義方法執行增刪改        public static bool ExecuteNonQuery(string sqlstr)        {             //開啟資料庫連接            conn.Open ();            //建立command對象並執行sql語句            SqlCommand  cmd = new SqlCommand (sqlstr ,conn);            int result = cmd.ExecuteNonQuery ();            //關閉串連            conn.Close ();            //定義傳回值            return result >0;        }    }

 

*SQL資料庫兩種連接字串

  1. SQL Server 身分識別驗證登入:server = 伺服器名;database=資料庫名;uid=使用者名稱;pwd=密碼;

  2. Windows身分識別驗證連接字串:serve=伺服器名;database=資料庫名;Integrated Security=true;

C#winfrom最簡DBHelp(資料庫連接操作)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.