using system;
using system.collections.generic;
using system.text;
using system.data;
using system.data.oledb;
namespace zxf
///
/// 析構函式,釋放非託管資源
///
~fk_access()
catch(exception e)
trycatch{}
}///
/// 保護方法,開啟資料庫連線。
///
protected void open()
catch(exception e)
}if (connection.state.equals(connectionstate.closed))
catch(exception e)}}
///
/// 公有方法,關閉資料庫連線。
///
public void close()
catch(exception e)
}///
/// 公有方法,釋放資源。
///
public void dispose()
}catch(exception e)
}///
/// 公有方法,獲取資料,返回乙個oledbdatareader (呼叫後主意呼叫sqldatareader.close())。
///
/// sql語句
/// oledbdatareader
public oledbdatareader getdatareader(string sqlstring)
catch(exception e)
}///
/// 公有方法,獲取資料,返回乙個dataset。
///
/// sql語句
///
public dataset getdataset(string sqlstring)
catch(exception e)
finally
return dataset;
}///
/// 公有方法,獲取資料,返回乙個datarow。
///
/// sql語句
/// datarow
public datarow getdatarow(string sqlstring)
else
}///
/// 讀取表庫:datatable
///
/// sql語句
///
public datatable readtable(string acc_sql)
///
/// 讀取錶行:datarow;
///
/// sql語句
///
public datarow readrow(string acc_sql)
///
/// 更新資料:tdn[i] 是字段;tds[i]是值;字段數;sql語句
///
/// 欄位名稱
/// 字段數值
/// 字段數
/// sql語句
///
public bool uprow( string tdn ,string tds,int s, string acc_sql )
catch (exception e )
close();
return i;
}//結束}}
連線ACCESS資料庫類
using system using system.data using system.data.oledb namespace bussiness.cls private static string password xyz 9 8 4 ooyq 執行sql語句 public static ole...
連線並操作Access資料庫C 類
1 配置web.config檔案 配置資料庫連線引數 2 操作access資料庫c 類 using system using system.data using system.data.oledb using system.web using system.web.ui using system.c...
C 操作Access資料庫類
string connstring server database pubs uid sa pwd pooling true sqlconnection cn new sqlconnection data source 你資料庫的位址 database 資料庫名稱 uid 資料庫使用者名稱 pwd ...