Abort Query [message #82777] |
Thu, 03 July 2003 04:31 |
Indrani
Messages: 14 Registered: June 2003
|
Junior Member |
|
|
Hi friends,
Please tell me how to use Abort_query in forms if
mode is enter_query.
Thanks in adv
|
|
|
Re: Abort Query [message #82801 is a reply to message #82777] |
Mon, 07 July 2003 01:06 |
sujit
Messages: 94 Registered: April 2002
|
Member |
|
|
hi,
a query is open between the time the SELECT statement is issued and the time when all the rows have been fetched from the database. In particular, a query is not open when the form is in Enter Query mode, because the SELECT statement has not yet been issued.
So you can use it when a query is taking much time to execute or a query is in the middle of execution and you don't want it to continue.
Sujit
|
|
|