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