我有以下命令对象:
ADODB::_CommandPtr pCmd("ADODB.Command");
pCmd->ActiveConnection = pConn;
pCmd->CommandType = ADODB::adCmdText;
pCmd->CommandText = L" select ID, NZ(PaymentAmount, 0) from Contracts;";
ADODB::_RecordsetPtr pRS = pCmd->Execute(NULL, NULL, ADODB::adCmdText);
当我运行它时,会报告NZ函数不存在的错误。
我自己研究,发现我无法在ADO查询中使用NZ
。
ADO是否等同于此功能?