From 30e1fa9a9c655b75243ece71f37bfda9f1ae489b Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Tue, 28 Feb 2023 10:27:24 +0100 Subject: rename option to interruptible_queries --- it_dbi.class | 4 ++-- it_dbi_postgres.class | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/it_dbi.class b/it_dbi.class index 86c5e6d..49d2ae2 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -43,7 +43,7 @@ class it_dbi 'throttle_writes' => 0, # sleep for 'throttle_writes' multiplied by the execution time after every write 'unbuffered' => false, # use MYSQLI_USE_RESULT (WARNING this is not at all equivalent to normal it_dbi WARNING) 'ignored_warnings' => "", # regex of additional mysql warnings numbers to ignore - 'cancelable_queries' => false, + 'interruptible_queries' => false, ); var $_key; # Key of currently loaded record or null (public readonly) @@ -1129,7 +1129,7 @@ function _tables($p) { function __query($query, $p) { - if ($p['timeout'] || $this->_p['cancelable_queries']) + if ($p['timeout'] || $this->_p['interruptible_queries']) { $starttime = microtime(true); mysqli_query($this->_link, $query, ($p['unbuffered'] ? MYSQLI_USE_RESULT : MYSQLI_STORE_RESULT) | MYSQLI_ASYNC); diff --git a/it_dbi_postgres.class b/it_dbi_postgres.class index ac9c4ae..6af08d7 100644 --- a/it_dbi_postgres.class +++ b/it_dbi_postgres.class @@ -111,7 +111,7 @@ function _connect_db($p) { function __query($query, $p) { - if ($p['timeout'] || $this->_p['cancelable_queries']) + if ($p['timeout'] || $this->_p['interruptible_queries']) { $starttime = microtime(true); pg_send_query($this->_link, $query); -- cgit v1.2.3