九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
C++在數(shù)據(jù)庫(kù)中插入數(shù)據(jù)
C++是不能的,必須使用平臺(tái)數(shù)據(jù)庫(kù)相關(guān)的動(dòng)態(tài)鏈接庫(kù)操作。使用在VC中使用ADO操作是比較簡(jiǎn)單的。

1)、引入ADO類  

#import   "c:\program   files\common   files\system\ado\msado15.dll "   \
no_namespace   \
rename   ( "EOF ",   "adoEOF ")
(2)、初始化COM

在MFC中可以用AfxOleInit();非MFC環(huán)境中用:  
CoInitialize(NULL);
CoUnInitialize();

(3)#import   包含后就可以用3個(gè)智能指針了:_ConnectionPtr、_RecordsetPtr和_CommandPtr

1.連接和關(guān)閉數(shù)據(jù)庫(kù)   (1)連接  

例子:連接Access數(shù)據(jù)庫(kù)
AfxOleInit();//初始化
HRESULT   hr;
try
{
hr   =   m_pConnection.CreateInstance( "ADODB.Connection ");///創(chuàng)建Connection對(duì)象
if(SUCCEEDED(hr))
{
m_pConnection-> ConnectionTimeout   =   0;
hr   =   m_pConnection-> Open(   "Provider=Microsoft.Jet.OLEDB.4.0;Data   Source=db.mdb ",   " ",   " ",   adModeUnknown);
//m_pConnection-> PutDefaultDatabase   ((_bstr_t) "DB ");//設(shè)置默認(rèn)數(shù)據(jù)庫(kù)

m_pCommand.CreateInstance(__uuidof(Command));
m_pCommand-> CommandTimeout   =   5;
m_pCommand-> ActiveConnection   =   m_pConnection;
}
}
catch(_com_error   e)///捕捉異常
{
CString   errormessage;
errormessage.Format( "連接數(shù)據(jù)庫(kù)失敗!\r\n錯(cuò)誤信息:%s ",e.ErrorMessage());
AfxMessageBox(errormessage);///顯示錯(cuò)誤信息
}


(2)、關(guān)閉  

//如果數(shù)據(jù)庫(kù)連接有效
if(   m_pConnection-> State   )
            m_pConnection-> Close();
m_pConnection   =   NULL;    

(3)、設(shè)置連郵奔?//設(shè)置連接時(shí)間-----------------------------------  
pConnection-> put_ConnectionTimeout(long(5));
2.打開一個(gè)結(jié)果集

(1)打開,首先創(chuàng)建一個(gè)_RecordsetPtr實(shí)例,然后調(diào)用Open()得到一條SQL語句的執(zhí)行結(jié)果
_RecordsetPtrm_pRecordset;
m_pRecordset.CreateInstance(__uuidof(Recordset));

//   在ADO操作中建議語句中要常用try...catch()來捕獲錯(cuò)誤信息,
//   因?yàn)樗袝r(shí)會(huì)經(jīng)常出現(xiàn)一些意想不到的錯(cuò)誤。jingzhou   xu
try
{
m_pRecordset-> Open( "SELECT   *   FROM   DemoTable ",//   查詢DemoTable表中所有字段
m_pConnection.GetInterfacePtr(),     //   獲取庫(kù)接庫(kù)的IDispatch指針
adOpenDynamic,
adLockOptimistic,
adCmdText);
}
catch(_com_error   *e)
{
AfxMessageBox(e-> ErrorMessage());
}

(2)關(guān)閉結(jié)果集   m_pRecordset-> Close();

3.操作一個(gè)結(jié)果集

(1)、遍歷(讀取)
a)、用pRecordset-> adoEOF來判斷數(shù)據(jù)庫(kù)指針是否已經(jīng)移到結(jié)果集的末尾了;m_pRecordset-> BOF判斷是否   在第一條記錄前面:   while(!m_pRecordset-> adoEOF)
{
var   =   m_pRecordset-> GetCollect( "Name ");
if(var.vt   !=   VT_NULL)
strName   =   (LPCSTR)_bstr_t(var);
var   =   m_pRecordset-> GetCollect( "Age ");
if(var.vt   !=   VT_NULL)
strAge   =   (LPCSTR)_bstr_t(var);
m_AccessList.AddString(   strName   +   "   -->   "+strAge   );
m_pRecordset-> MoveNext();
}

b)、取得一個(gè)字段的值的辦法有兩種辦法

一是

//表示取得第0個(gè)字段的值   m_pRecordset-> GetCollect( "Name ");

或者   m_pRecordset-> GetCollect(_variant_t(long(0));

二是
pRecordset-> get_Collect( "COLUMN_NAME ");

或者   pRecordset-> get_Collect(long(index));

(2)、添加

a)、調(diào)用m_pRecordset-> AddNew();
b)、調(diào)用m_pRecordset-> PutCollect();給每個(gè)字段賦值
c)、調(diào)用m_pRecordset-> Update();確認(rèn)

(3)、修改
(4)、刪除
a)、把記錄指針移動(dòng)到要?jiǎng)h除的記錄上,然后調(diào)用Delete(adAffectCurrent)   try
{
//   假設(shè)刪除第二條記錄
m_pRecordset-> MoveFirst();
m_pRecordset-> Move(1);                
//   從0開始
m_pRecordset-> Delete(adAffectCurrent);    
//   參數(shù)adAffectCurrent為刪除當(dāng)前記錄
m_pRecordset-> Update();
}
catch(_com_error   *e)
{
AfxMessageBox(e-> ErrorMessage());
}

4.直接執(zhí)行SQL語句,除了要用到結(jié)果集其余的大部分功能都可以直接用SQL語言實(shí)現(xiàn)

(1)、用_CommandPtr和_RecordsetPtr配合
_CommandPtrm_pCommand;
m_pCommand.CreateInstance(__uuidof(Command));
//   將庫(kù)連接賦于它
m_pCommand-> ActiveConnection   =   m_pConnection;    
//   SQL語句
m_pCommand-> CommandText   =   "SELECT   *   FROM   DemoTable ";    
//   執(zhí)行SQL語句,返回記錄集
m_pRecordset   =   m_pCommand-> Execute(NULL,   NULL,adCmdText);  
(2)、直接用_ConnectionPtr執(zhí)行SQL語句
_RecordsetPtr   Connection15::Execute   (   _bstr_t   CommandText,  
                                                                            VARIANT   *   RecordsAffected,  
                                                                            long   Options   )  

其中CommandText是命令字串,通常是SQL命令。  
參數(shù)RecordsAffected是操作完成后所影響的行數(shù),  
參數(shù)Options表示CommandText中內(nèi)容的類型,Options可以取如下值之一:  
adCmdText:表明CommandText是文本命令  
adCmdTable:表明CommandText是一個(gè)表名  
adCmdProc:表明CommandText是一個(gè)存儲(chǔ)過程  
adCmdUnknown:未知

例子:
_variant_t   RecordsAffected;
m_pConnection-> Execute( "UPDATE   users   SET   old   =   old+1 ",&RecordsAffected,adCmdText);  
5.調(diào)用存儲(chǔ)過程
(1)、利用_CommandPtr
_CommandPtrm_pCommand;
m_pCommand.CreateInstance(__uuidof(Command));
m_pCommand-> ActiveConnection   =   m_pConnection;     //   將庫(kù)連接賦于它
m_pCommand-> CommandText   =   "Demo ";    
m_pCommand-> Execute(NULL,NULL,   adCmdStoredProc);    
(2)、直接用_ConnectionPtr直接調(diào)用(見4.(2))

6.遍歷數(shù)據(jù)庫(kù)中的所有表名   _ConnectionPtr   m_pConnect;  
_RecordsetPtr   pSet;  
HRESULT   hr;  
try  
{    
hr   =   m_pConnect.CreateInstance( "ADODB.Connection ");        
if(SUCCEEDED(hr))    
{      
CString   dd;      
dd.Format( "Provider=Microsoft.Jet.OLEDB.4.0;Data   Source=%s ",file);      
hr   =   m_pConnect-> Open((_bstr_t)dd, " ", " ",adModeUnknown);      
pSet   =   m_pConnect-> OpenSchema(adSchemaTables);            
while(!(pSet-> adoEOF))      
{                  
//獲取表格        
_bstr_t   table_name   =   pSet-> Fields-> GetItem( "TABLE_NAME ")-> Value;

//獲取表格類型                
_bstr_t   table_type   =   pSet-> Fields-> GetItem( "TABLE_TYPE ")-> Value;

//過濾一下,只輸出表格名稱,其他的省略
if   (   strcmp(((LPCSTR)table_type), "TABLE ")==0){
CString   tt;
tt.Format( "%s ",(LPCSTR)table_name);          
AfxMessageBox(tt);                
}              
pSet-> MoveNext();        
}      
pSet-> Close();    
}    
m_pConnect-> Close();    
}catch(_com_error   e)///捕捉異常  
{    
CString   errormessage;    
errormessage.Format( "連接數(shù)據(jù)庫(kù)失敗!rn錯(cuò)誤信息:%s ",e.ErrorMessage());

AfxMessageBox(errormessage);
return   -1;
}
7.遍歷一個(gè)表中的所有字段
Field   *       field   =   NULL;
HRESULT       hr;
Fields   *     fields   =   NULL;
hr   =   m_pRecordset-> get_Fields   (&fields);//得到記錄集的字段集和
 
if(SUCCEEDED(hr))  
        fields-> get_Count(&ColCount);

//得到記錄集的字段集合中的字段的總個(gè)數(shù)
for(i=0;iItem[i]-> get_Name(&bstrColName);//得到記錄集//中的字段名
strColName=bstrColName;
nameField   =   strColName;
m_FieldsList.AddString(nameField);
}
if(SUCCEEDED(hr))
fields-> Release();//釋放指針

附:
1、_variant_t
(1)、一般傳給這3個(gè)指針的值都不是MFC直接支持的數(shù)據(jù)類型,而要用_variant_t轉(zhuǎn)換一下
_variant_t(XX)可以把大多數(shù)類型的變量轉(zhuǎn)換成適合的類型傳入:
(2)、_variant_t   var;_variant_t   ->   long:   (long)var;
_variant_t   ->   CString:   CString   strValue   =   (LPCSTR)_bstr_t(var);
CString   ->   _variant_t:   _variant_t(strSql);
2、BSTR寬字符串與CString相互轉(zhuǎn)換

BSTR   bstr;
CString   strSql;
CString   ->   BSTR:   bstr   =   strSql.AllocSysString();
BSTR   ->   CString:   strSql   =   (LPCSTR)bstr;
3、_bstr_t與CString相互轉(zhuǎn)換

_bstr_t   bstr;
CString   strSql;
CString   ->   _bstr_t:   bstr   =   (_bstr_t)strSql;
_bstr_t   ->   CString:   strSql   =   (LPCSTR)bstr;
4、關(guān)于時(shí)間
Access:表示時(shí)間的字符串#2004-4-5#
Sql:表示時(shí)間的字符串 ' '2004-4-5 ' '
DateField(時(shí)間字段)   select   *   from   my_table   where   DateField   >   #2004-4-10#


try
{
m_pCommand-> CommandText   =   "INSERT   INTO   tTest(age)   VALUES( '23f2 ')   ";
m_pRecordset   =   m_pCommand-> Execute(NULL,NULL,   adCmdText);    
}
catch(_com_error   e)///捕捉異常
{
CString   errormessage;
errormessage.Format( "連接數(shù)據(jù)庫(kù)失敗!\r\n錯(cuò)誤信息:%s ",e.ErrorMessage());
AfxMessageBox(errormessage);///顯示錯(cuò)誤信息
}

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
VC編寫ADO連接Access,SQL Server數(shù)據(jù)庫(kù)入門實(shí)例
數(shù)據(jù)庫(kù)操作
VC++ ADODB 打開操作ACCESS數(shù)據(jù)庫(kù)代碼
VC++(MFC)ADO連接SQL2000詳解 (三)
ADO ACCESS 懶人的開發(fā)簡(jiǎn)單指南
MFC ACCESS連接數(shù)據(jù)庫(kù)
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服