typos
[phpmyadmin/madhuracj.git] / libraries / engines / ndbcluster.lib.php
blob3dfa54aafdf04d71b433a048b610e923cbe5f4c8
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @version $Id$
5 * @package phpMyAdmin-Engines
6 */
8 /**
10 * @package phpMyAdmin-Engines
12 class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
14 /**
15 * @return array
17 function getVariables()
19 return array(
20 'ndb_connectstring' => array(
25 /**
26 * @return string SQL query LIKE pattern
28 function getVariablesLikePattern()
30 return 'ndb\\_%';
33 /**
34 * returns string with filename for the MySQL helppage
35 * about this storage engne
37 * @return string mysql helppage filename
39 function getMysqlHelpPage()
41 return 'ndbcluster';