iCAx开思网

标题: 在数据库中新增数据出错(有代码) [打印本页]

作者: liang-863    时间: 2009-6-23 17:12
标题: 在数据库中新增数据出错(有代码)
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’)中的三个变量换成数值可以运行 并在数据库中新增一行数据。




欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3