(Not recommended) Get time specified for SQL queries to succeed
The querytimeout
function is not recommended. There is no
replacement for this functionality. To import data, use the fetch
function. For details, see Compatibility Considerations.
timeout = querytimeout(curs)
timeout = querytimeout(curs)
returns the amount
of time, in seconds, allowed for SQL queries of the open cursor
object curs
to succeed. If a given query cannot
complete in the specified time, the toolbox stops trying to perform the query.
The database administrator defines timeout values. If the timeout value is zero, queries must complete immediately.
Get the current database timeout setting for curs
.
querytimeout(curs) ans = 10
To create a cursor
object using an ODBC connection,
you can use the native ODBC interface. For details, see database
.
This error message displays if a given database does not have a database timeout feature:
[Driver]Optional feature not implemented
ODBC drivers for Microsoft®
Access™ and Oracle® do not support querytimeout
.