c# access ile veritabanı bağlantısı
28/06/09
1 2 3 4 5 6 | public OleDbConnection baglanti()
{
OleDbConnection Baglantim = new OleDbConnection("provider = Microsoft.jet.oledb.4.0; data source = |DataDirectory|//db.mdb;”);
Baglantim.Open();
return Baglantim;
} |
devamını oku >>
