X
xiaohuo
Unregistered / Unconfirmed
GUEST, unregistred user!
各位先进:
本人用DELPHI操作SQL数据库,对其中的表建立了视图,然而在执行时,出现EDBEngineError,出错信息为“capability not supported”,本人不知是什么原因?另外,请问如何根据出错信息来判断BDE引擎的错误,有没有什么文档可以参考?再次不甚感激!程序如下:
with TQ do
begin
SQL.Clear;
SQL.Add('Create VIEW ViewVoice(Date_Time,tYear,tMonth,tDay,tWeek,Location,Status,FileSize)');
SQL.Add('AS select Date_Time,DatePart(yy,Date_Time),DatePart(mm,Date_Time),DatePart(dd,Date_Time),DatePart(dw,Date_Time),Location,Status,FileSize from Table_Voice');
SQL.Add('where UserId=:UserId');
ParamByName('UserId').AsString:=User_Str;
Prepare;
ExecSql;
本人用DELPHI操作SQL数据库,对其中的表建立了视图,然而在执行时,出现EDBEngineError,出错信息为“capability not supported”,本人不知是什么原因?另外,请问如何根据出错信息来判断BDE引擎的错误,有没有什么文档可以参考?再次不甚感激!程序如下:
with TQ do
begin
SQL.Clear;
SQL.Add('Create VIEW ViewVoice(Date_Time,tYear,tMonth,tDay,tWeek,Location,Status,FileSize)');
SQL.Add('AS select Date_Time,DatePart(yy,Date_Time),DatePart(mm,Date_Time),DatePart(dd,Date_Time),DatePart(dw,Date_Time),Location,Status,FileSize from Table_Voice');
SQL.Add('where UserId=:UserId');
ParamByName('UserId').AsString:=User_Str;
Prepare;
ExecSql;