gpt4 book ai didi

progress-4gl - OpenEdge 中的静态与动态查询

转载 作者:行者123 更新时间:2023-12-04 04:48:54 26 4
gpt4 key购买 nike

问题很常见,让我们看看 OpenEdge 在代码可读性、灵活性和性能方面的优缺点。

静态查询:

+   readability: convenient `buffer.field` notation
+ performance: higher (supposedly, need comments)
-/+ "global scope" allows to handle all previously used buffers, but could lead
to ambiguousness, so you'll have to clarify it with a table
name (table.field instead of field)
- flexibility: you cannot alternate predicate-expression much,
even IF function is not recommended (can affect performance)

动态查询:
+   flexibility: you can build predicate-expression completely runtime
+ flexibility: you can work with each field not specifying its name,
f.e. you can process all fields of certain record in cycle
+ flexibility: are reusable (need comments on this point)
+/- "local scope" allows to use only buffers specified in `SET-BUFFERS` method
- readability: a little more code to write
- performance: slightly slower (not sure)

欢迎补充和更正。以及任何相关阅读的链接。

最佳答案

静态查询的过滤条件可以“即时”更改,如下所示:

DEFINE QUERY q-name FOR table-name.
DEFINE VARIABLE h-qry AS HANDLE NO-UNDO.
h-qry = QUERY q-name:HANDLE.
h-qry:QUERY-PREPARE("for each table-name where table-name.field-name = 1").

从这里开始,查询被视为与任何普通静态查询相同。

可读性:"buffer-handle:buffer-field("field-name"):buffer-value"构造指的是动态缓冲区 - 在动态查询中使用静态缓冲区是完全可以接受的(通过 BUFFER table-name:HANDLE),所以动态查询缓冲区可以与静态缓冲区一起使用,并且并不总是需要使用它的句柄来取消引用字段。

性能:上次做对比,对于相同的查询条件,动态查询比静态查询慢。好处是它们比静态查询更灵活。

可重用性:一旦设置了动态查询的缓冲区结构,AFAIK,就无法更改。不过,它可以使用与静态查询相同的新过滤条件重新打开。

关于progress-4gl - OpenEdge 中的静态与动态查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18267870/

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