knutf Active Member Licensed User Longtime User May 28, 2021 #1 Hello! I can't find an async version of ExecQuerySingleResult. Should I use ExecQueryAsync also for single result queries? - Or will ExecQuerySingleResult always be so fast that an async version of it make no sense?
Hello! I can't find an async version of ExecQuerySingleResult. Should I use ExecQueryAsync also for single result queries? - Or will ExecQuerySingleResult always be so fast that an async version of it make no sense?
DonManfred Expert Licensed User Longtime User May 28, 2021 #2 Honestly you should always use the Async methods. Edit: Especially when working with a Remote-Database. Last edited: May 28, 2021 Upvote 0
Honestly you should always use the Async methods. Edit: Especially when working with a Remote-Database.
Erel B4X founder Staff member Licensed User Longtime User May 28, 2021 #3 It depends on whether it is a remote database or a local one. With a remote one you should always use the async methods. Upvote 0
It depends on whether it is a remote database or a local one. With a remote one you should always use the async methods.