1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11469] Add comment about using sql_multi_insert when not buffering.

PHPBB3-11469
This commit is contained in:
Andreas Fischer
2013-03-25 01:41:09 +01:00
parent 16a6025372
commit fc8bf3f3c7

View File

@@ -65,6 +65,9 @@ class phpbb_db_sql_insert_buffer
{
if (!$this->db_supports_multi_insert)
{
// The database does not support multi inserts.
// Pass data on to sql_multi_insert right away which will
// immediately send an INSERT INTO query to the database.
$this->db->sql_multi_insert($this->table_name, array($row));
}