1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9685] Buffer posts for search indexing when using mssqlnative.

To have a generic solution there is now a sql_buffer_nested_transaction()
which indicates that the given SQL driver requires buffering to run a
transaction while iterating over another result set.

PHPBB3-9685
This commit is contained in:
Nils Adermann
2011-03-12 16:49:25 +01:00
parent 2f57bfb6f2
commit 91b3195255
3 changed files with 35 additions and 3 deletions

View File

@@ -258,6 +258,14 @@ class dbal_mssqlnative extends dbal
return ($this->sql_server_version) ? 'MSSQL<br />' . $this->sql_server_version : 'MSSQL';
}
/**
* {@inheritDoc}
*/
function sql_buffer_nested_transaction()
{
return true;
}
/**
* SQL Transaction
* @access private
@@ -628,7 +636,7 @@ class dbal_mssqlnative extends dbal
return false;
}
}
/**
* Allows setting mssqlnative specific query options passed to sqlsrv_query as 4th parameter.
*/