1. 程式人生 > >c# 連接本地的sdf數據庫文件

c# 連接本地的sdf數據庫文件

oid GridView eve adapt 數據 pub cti pan object

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.SqlServerCe; //SDF 是ce版本,要使用該驅動才行 namespace testc
{
public partial class Form1 : Form
{
SqlCeConnection sqlceCon = new SqlCeConnection(); //SqlCeConnection

SqlCeCommand sqlCeCom = new SqlCeCommand();
DataTable dt = new DataTable(); public Form1()
{
InitializeComponent();
} private void Form1_Load(object sender, EventArgs e)
{
sqlceCon = new SqlCeConnection("Data Source=C:\\Northwind.sdf");
sqlceCon.Open(); SqlCeDataAdapter adptrOdbc = new SqlCeDataAdapter("select * from customers", sqlceCon);
adptrOdbc.Fill(dt); dataGridView1.DataSource = dt;
}
}
}

c# 連接本地的sdf數據庫文件