Translation update done using Pootle.
[phpmyadmin-themes.git] / libraries / engines / ndbcluster.lib.php
blob29793852af5ba82b420f84a60d9eb38974bcc2d1
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @package phpMyAdmin-Engines
5 */
7 /**
9 * @package phpMyAdmin-Engines
11 class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
13 /**
14 * @return array
16 function getVariables()
18 return array(
19 'ndb_connectstring' => array(
24 /**
25 * @return string SQL query LIKE pattern
27 function getVariablesLikePattern()
29 return 'ndb\\_%';
32 /**
33 * returns string with filename for the MySQL helppage
34 * about this storage engne
36 * @return string mysql helppage filename
38 function getMysqlHelpPage()
40 return 'ndbcluster';