using System.Data.OleDb;
新建一個類(用於數據庫連接的參數):
public static string GetOracleDbConnStr()
{
// 數據庫連接
string tempUser="system",tempPassWord="andystarmkmk",tempDataSource="andy";
string tempstrCon="Provider=OraOLEDB.Oracle.1;Persist Security Info=False;"+
"User ID="+tempUser+";Password="+tempPassWord+";Data Source="+tempDataSource;
return tempstrCon;
}
設置Click事件:
private void button1_Click(object sender, System.EventArgs e)
{
string strSQL="select * from scott.aa";
string tempstrCon=Form1.GetOracleDbConnStr();
string tempstrCom="select * from scott.aa";
OleDbConnection tempmyConn=new OleDbConnection(tempstrCon);
DataSet tempmyDataSet=new DataSet();
OleDbDataAdapter tempmyCommand=new OleDbDataAdapter (tempstrCom,tempmyConn);
tempmyCommand.Fill(tempmyDataSet);
tempmyConn.Open();
dataGrid1.DataSource =tempmyDataSet;
OleDbCommand tempCommand=new OleDbCommand(strSQL,tempmyConn);
tempCommand.ExecuteNonQuery();
tempmyConn.Close();
}
注意:
1.連接數據庫需要的參數:
◎OleDbConnection 用於建立連接
◎DataSet 數據在內存中的緩存,就是在內存中建立一個與數據庫一致的表
◎OleDbDataAdapter 用於更新數據源
◎OleDbCommand 用於執行SQL命令
2.連接完成後應該馬上關閉連接。