vc与orcal的联接

vc与orcal的连接
void ADOConn::OnInitADOConn()
{
try
{
  m_pConnection.CreateInstance("ADODB.Connection");//创建连接对象实例
_bstr_t strConnect="Provider=MSDAORA.1;Password=mrlrn;\
User ID=system;Data Source=mrLRN;Persist Security Info=True";
m_pConnection->Open(strConnect,"","",adModeUnknown);//打开数据库
}
catch(_com_error e)
{
AfxMessageBox(e.Description());
}
}
在ADOConn数据库连接类中定义的OnInitADOConn()函数, _bstr_t strConnect="Provider=MSDAORA.1;Password=mrlrn;\
User ID=system;Data Source=mrLRN;Persist Security Info=True"; 这段代码Provider;Persist Security Info代表什么意思呢?能帮忙解释一下嘛?



------解决方案--------------------
Provider 包含特定 Connection 对象的提供者名称的字符串值。
这个是和不同数据库相关的,像SQLSERVER的话就是SQLOLEDB、excel的话是Microsoft.Jet.OLEDB.4.0 。。。

Persist Security Info 表示是否保存安全信息