Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / libraries / engines / ndbcluster.lib.php
blob59ea133d7e9c7523bf2980a31b25ecf608319020
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @version $Id$
5 */
7 /**
9 */
10 class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
12 /**
13 * @return array
15 function getVariables()
17 return array(
18 'ndb_connectstring' => array(
23 /**
24 * @return string SQL query LIKE pattern
26 function getVariablesLikePattern()
28 return 'ndb\\_%';
31 /**
32 * returns string with filename for the MySQL helppage
33 * about this storage engne
35 * @return string mysql helppage filename
37 function getMysqlHelpPage()
39 return 'ndbcluster';