mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 00:37:42 +02:00
[ticket/10942] Add sql_concatenate to dbal
PHPBB3-10942
This commit is contained in:
@@ -91,6 +91,14 @@ class dbal_mssql extends dbal
|
||||
return ($this->sql_server_version) ? 'MSSQL<br />' . $this->sql_server_version : 'MSSQL';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
function sql_concatenate($string1, $string2)
|
||||
{
|
||||
return $string1 . ' + ' . $string2;
|
||||
}
|
||||
|
||||
/**
|
||||
* SQL Transaction
|
||||
* @access private
|
||||
|
Reference in New Issue
Block a user