C#遠端連線postgresql資料庫

來源:互聯網
上載者:User

標籤:建立資料庫   資料集   com   ada   images   image   highlight   技術   datalist   

        第一次在項目中遇到遠端存取postgresql資料庫的,當時經常會出現串連資料庫的錯誤,連接字串出現亂碼現象

            

解決方案

 

在設定檔中添加連接字串

 <add key="Information"  value="server=182.76.17.254;Port=5432;Database=wos;uid=postgres;pwd=postgres;Encoding=UNICODE" />


後台代碼

 string connectionString = ConfigurationManager.AppSettings["Information"];            //建立資料庫連接對象            NpgsqlConnection con = new NpgsqlConnection(connectionString);            //定義查詢語句,這裡最好將SQL語句在SQL中寫好並驗證正確確在複製粘貼過來(在對資料查詢時最好只查所需的一些不需要的資料就不要取出,這樣可以提高啟動並執行效率)            string strSql = "select * from terminals ";                       //con.Open();//開啟資料庫連接 (當然此句可以不寫的)            NpgsqlDataAdapter sda = new NpgsqlDataAdapter(strSql, con);            DataSet ds = new DataSet();            sda.Fill(ds,"terminals");//把執行得到的資料放在資料集中            //pds.DataSource = ds.Tables[0].DefaultView;//把資料集中的資料放入分頁資料來源中            //DataList1.DataSource = pds;//綁定Datalist            DataList1.DataSource = ds.Tables["terminals"];            DataList1.DataBind();            con.Close();

  

最後串連成功

 

C#遠端連線postgresql資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.