C#連線access資料庫
阿新 • • 發佈:2019-01-29
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.OleDb;
namespace sql
{
class Program
{
static void Main(string[] args)
{
String sql = @"provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=msg.mdb";
OleDbConnection conn = new OleDbConnection(sql);
conn.Open();
OleDbCommand command=conn.CreateCommand();
command.CommandText="select * from data";
OleDbDataReader datareader = command.ExecuteReader();
Console.WriteLine("{0,8} {1,4}","ID","姓名");
while (datareader.Read())
{ Console.WriteLine("{0,8},{1,4}",datareader["id"],datareader["myname"]);
}
datareader.Close();//關閉
conn.Close();//關閉資料庫的連線
}
catch(Exception e)
{
Console.WriteLine("worong");
}
}
}
}
建立的表為:
data,將access檔案放到bin/Debug資料夾裡面 一個簡單的dos下的連線資料庫就完成了
相比jsp ,asp 思路還清晰得多,當然這個連線資料庫的方式有多種多樣,但是總的一句話
連線資料庫並不是算什麼深奧的技術,只是一個很簡單的技術,所以這裡只是我的筆記而已