diff options
| -rw-r--r-- | it_dbi.class | 4 | ||||
| -rw-r--r-- | 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); |