程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SyBase數據庫 >> SyBase綜合文章 >> 引用 C# 連 接 sybase

引用 C# 連 接 sybase

編輯:SyBase綜合文章

引用

Ralf6762 的 C# 連 接 Sybase

1、Ado.Net連接:

         1、安裝Sybase1252客戶端,選擇自定義案裝,將ado.Net選上。

         2、創建c#項目,添加引用Sybase.Data.AseClIEnt.dll到項目中。此dll在Sybase的安裝目錄下面。

         3、程序的前部寫上using Sybase.Data.AseClIEnt;

         3、在一個按鈕事件中寫入:

                   try

            {

                AseConnection conn = new AseConnection("Data Source='192.168.1.26';Port='5000';UID='sa';PWD='';Database='test';");

                AseCommand comm = new AseCommand("select * from student", conn);

                conn.Open();

                AseDataReader dr = comm.ExecuteReader();

                string str = "";

                while (dr.Read())

                {

                    str = str + dr.GetString(0);

                }

                this.label1.Text = str;

                conn.Close();

                dr.Close();

            }

            catch (Exception ex)

            {

                MessageBox.Show(ex.Message);

            }

2、Odbc連接:

1、建立odbc數據源命名為QQ,driver選擇Sybase ASE ODBC Driver

2、建立c#程序。

3、寫上using System.Data.Odbc;

4、在一個按鈕事件中寫入:

         try

            {

                OdbcConnection conn = new OdbcConnection("DSN=QQ;UID=sa;Pwd=");

                OdbcCommand comm = new OdbcCommand("select * from student", conn);

                conn.Open();

                OdbcDataReader dr = comm.ExecuteReader();

                string str = "";

                while (dr.Read())

                {

                    str = str + dr.GetString(0);

                }

                this.label1.Text = str;

                conn.Close();

                dr.Close();

            }

            catch (Exception ex)

            {

                MessageBox.Show(ex.Message);            }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved