Usage:
$smcFunc['db_server_info'] (connection)
Description: Attempts to get database server information
Parameters:
- connection the database connection.
Return: The database version as returned by mysql_get_server_info. For PostgreSQL and SQLite is emulated with the respective functions.
Example:
// Check the database version - for some buggy MySQL version. $server_version = $smcFunc['db_server_info'](); if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51')))