ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add('delete from 表1');
ADOQuery1.Open;
异常如下:
Debugger Exception Notification
Project Project1.exe raised exception class EOleException with message '当前提供程序不支持从单一执行返回多个记录集。'.Process
stopped. Use Step or Run to continue.
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add('select * from 表1');
ADOQuery1.Open;
异常如下:
Debugger Exception Notification
Project Project1.exe raised exception class EOleException with message '无效的SQL语句;期待'DELETE'、'INSERT'、'PROCEDURE'、'SELECT'或'UPDATE'。'.Process
stopped. Use Step or Run to continue.