gpt4 book ai didi

sql-server - 中止具有处理时间限制的 SQL 查询

转载 作者:行者123 更新时间:2023-12-03 15:01:52 25 4
gpt4 key购买 nike

我可以使用处理时间有限的 DELPHI、dbgo DB 组件和 SQL Server 数据库服务器编写 SQL 查询吗?

喜欢

select * from table where ......  

process_time_limit = 5秒

最好在时间限制内给我 10% 的行,而不是等待数小时以获得完整的查询数据集

最佳答案

ADO 组件:

我会尝试异步数据获取。当您执行查询时,您会记得何时开始以及每次OnFetchProgress事件触发后,您将检查 EventStatus 是否仍处于 esOK 状态并检查查询执行所用的时间。如果超过了,您可以使用 Cancel 取消数据获取。数据集上的方法。

我打算使用类似以下(未经测试的)伪代码的内容:

var
FQueryStart: DWORD;

procedure TForm1.FormCreate(Sender: TObject);
begin
// configure the asynchronous data fetch for dataset
ADOQuery1.ExecuteOptions := [eoAsyncExecute, eoAsyncFetchNonBlocking];
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
// store the query execution starting time and execute a query
FQueryStart := GetTickCount;
ADOQuery1.SQL.Text := 'SELECT * FROM Table';
ADOQuery1.Open;
end;

procedure TForm1.ADOQuery1FetchProgress(DataSet: TCustomADODataSet; Progress,
MaxProgress: Integer; var EventStatus: TEventStatus);
begin
// if the fetch progress is in esOK (adStatusOK) status and the time since
// the query has been executed (5000 ms) elapsed, cancel the query
if (EventStatus = esOK) and (GetTickCount - FQueryStart >= 5000) then
DataSet.Cancel;
end;

关于sql-server - 中止具有处理时间限制的 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14674469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com