|
马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
float l = _Editor004 -> GetFloatValue();
float w = _Editor006 -> GetFloatValue();
float h = _Editor008 -> GetFloatValue();
::CoInitialize(NULL);
_ConnectionPtr m_DBCnt=NULL;
_CommandPtr m_DBCmd ;
_RecordsetPtr m_pRecordset=NULL ;
m_DBCnt.CreateInstance(__uuidof(Connection));
m_DBCnt->ConnectionString = "File Name=d:\\cn.udl";
m_DBCnt->Open("","","",NULL);
m_DBCmd.CreateInstance(__uuidof(Command));
m_DBCmd->ActiveConnection=m_DBCnt;
m_DBCmd ->CommandText = "insert into cuboid ([changdu],[kuandu],[gaodu]) values ('l','w','h')" ;
m_DBCmd ->Execute(NULL,NULL,adCmdText);
m_DBCnt->Close();
::CoUninitialize();
数据库中changdu,kuandu,gaodu对应的为float格式。
编译能够通过,运行的时候就会提示runtime error。
insert into cuboid ([changdu],[kuandu],[gaodu]) values ('l','w',‘h’)中的三个变量换成数值可以运行 并在数据库中新增一行数据。 |
|