c# ado 串連資料庫 六步曲

來源:互聯網
上載者:User

標籤:os   strong   資料   io   art   for   

建立串連分為六步:
1.定義連接字串,oracle 的連接字串為:

                        private static string connString = "Data Source=192.168.1.130:1521/mydata;Persist Security Info=True;User ID=em_test;Password=test123;Unicode=True";

2.根據連接字串成串連
3.開啟串連
4.執行個體命令對象
5.操作
6.關閉串連

看一個例子: 

using System; using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OracleClient;

namespace OpenCloseDB
{
    public partial class Form1 : Form
    {
        public Form1()
        {             InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            OracleConnection connection = null;
            int num = 0;
            string message = "";
            String sql = "select count(*) from ex_user";
            try
            {
                string connString = "Data Source=mydata;Persist Security Info=True;User ID=test;Password=huikk123;Unicode=True";

                // 建立connection對象
                connection = new OracleConnection(connString);

                // 開啟串連
                connection.Open();
                OracleCommand command = new OracleCommand(sql, connection);
                num = int.Parse(command.ExecuteScalar().ToString());
                message = string.Format("共有{0}條使用者資訊!", num);
                MessageBox.Show(message);
            }
            catch (Exception ex)
            {

                MessageBox.Show("出現異常"+ex.Message);
            }
            finally
            {
                if (connection != null)
                {
                    connection.Close();
                }
            }
        }
    }
}

相關文章

聯繫我們

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