程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> C#連接ACCESS和SQL2000

C#連接ACCESS和SQL2000

編輯:.NET實例教程

using System;
using System.Data;
using System.Data.SqlClIEnt;
using System.Data.OleDb;
namespace ConsoleApplication1
{
 /// <summary>
 /// Class1 的摘要說明。
 /// </summary>
 class Class1
 {
  /// <summary>
  /// 應用程序的主入口點。
  /// </summary>
  [STAThread]
  static void Main(string[] args)
  {

//以下是連接Access
   OleDbConnection dbconn=new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data                      source=c:\a.mdb");
   dbconn.Open();
   //OleDbCommand cmd=new OleDbCommand("select * from test1",dbconn);

    OleDbCommand cmd=dbconn.CreateCommand();
   cmd.CommandText="select * from test1";
   cmd.CommandType=CommandType.Text;
   OleDbDataReader reader=cmd.ExecuteReader();

//以下是連接SQL2000
   /*SqlConnection conn=new SqlConnection("server=localhost;Initial catalog=NorthWind;user  ID=sa;passWord=;");
   conn.Open();
   SqlCommand cmd=conn.CreateCommand();
   cmd.CommandText="select * from Customers";
   cmd.CommandType=CommandType.Text;
   SqlDataReader reader=cmd.ExecuteReader(CommandBehavior.CloseConnection);*/

   string output;
   while(reader.Read())
   {
    output=string.Format("custormer {0}:{1} works for {2}",reader.GetString(1),reader.GetString(2),reader.GetString(3));
    Console.WriteLine(output);
   }
  }
 }
}

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