db_server_info From Online Manual

Revision as of 12:44, 25 July 2011 by Emanuele (talk | contribs) (Created page with "{{smcfunc |function=db_server_info |usage=$smcFunc['db_server_info'] (connection) |description=Attempts to get database server information |parameters={{parmdesc |connection|d...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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')))



Advertisement: