Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / engines / ndbcluster.lib.php
blobe57846b6018680b9dda1022afd1c74b5d16c226c
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * The NDBCLUSTER storage engine
6 * @package PhpMyAdmin-Engines
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /**
13 * The NDBCLUSTER storage engine
15 * @package PhpMyAdmin-Engines
17 class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
19 /**
20 * Returns array with variable names realted to NDBCLUSTER storage engine
22 * @return array variable names
24 function getVariables()
26 return array(
27 'ndb_connectstring' => array(
32 /**
33 * Returns the pattern to be used in the query for SQL variables
34 * related to NDBCLUSTER storage engine
36 * @return string SQL query LIKE pattern
38 function getVariablesLikePattern()
40 return 'ndb\\_%';
43 /**
44 * Returns string with filename for the MySQL help page
45 * about this storage engine
47 * @return string mysql helppage filename
49 function getMysqlHelpPage()
51 return 'ndbcluster';