//stdafx.h
#import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("EOF","adoEOF")
//主程式初始化函數
BOOL CADO2App::InitInstance()
{
AfxEnableControlContainer();
AfxOleInit();//初始化COM庫
//--------------------------------------------
下面是ACCESS的: HRESULT hr;
try
{
hr = m_pConnection.CreateInstance("ADODB.Connection");///建立Connection對象
if(SUCCEEDED(hr)) {
hr = m_pConnection->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=test.mdb","","",adModeUnknown);///串連資料庫
///上面一句中串連字串中的Provider是針對ACCESS2000環境的,對於ACCESS97,需要改為:Provider=Microsoft.Jet.OLEDB.3.51; }
}
}
catch(_com_error e)///捕捉異常
{
CString errormessage;
errormessage.Format("串連資料庫失敗!\r\n錯誤資訊:%s",e.ErrorMessage());
AfxMessageBox(errormessage);///顯示錯誤資訊
return FALSE;
}
下面是串連SQL SERVER的CString strSQL;
HRESULT hr;
try
{
hr=m_pConnection.CreateInstance(__uuidof(Connection));
m_pConnection->CursorLocation=adUseClient;
strSQL="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TEST;Data Source=yjm";
if(SUCCEEDED(hr))
{
hr=m_pConnection->Open(_bstr_t(strSQL),"","",-1);
}
}
catch(_com_error e)///捕捉異常
{
CString errormessage;
errormessage.Format("串連資料庫失敗!\r\n錯誤資訊:%s",e.ErrorMessage());
AfxMessageBox(errormessage);///顯示錯誤資訊
return FALSE;
}
//AfxMessageBox("connected~~");
其中:
----- ADO串連SQL Server的資料庫連接字串模板 ----------
身分識別驗證模式為:"sql server和windows"
Provider=SQLOLEDB.1;Persist Security Info=True;User ID=使用者名稱;Password=密碼;Initial Catalog=資料庫名;Data Source=SQL伺服器名
身分識別驗證模式為:"僅windows"
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=資料庫名;Data Source=SQL伺服器名