~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/phpmyadmin2.10.1/libraries/engines/ndbcluster.lib.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/* $Id: ndbcluster.lib.php 8103 2005-12-07 10:41:35Z cybot_tm $ */
 
3
// vim: expandtab sw=4 ts=4 sts=4:
 
4
 
 
5
class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
 
6
{
 
7
    /**
 
8
     * @return  array
 
9
     */
 
10
    function getVariables()
 
11
    {
 
12
        return array(
 
13
            'ndb_connectstring' => array(
 
14
            ),
 
15
         );
 
16
    }
 
17
 
 
18
    /**
 
19
     * @return  string  SQL query LIKE pattern
 
20
     */
 
21
    function getVariablesLikePattern()
 
22
    {
 
23
        return 'ndb\\_%';
 
24
    }
 
25
 
 
26
    /**
 
27
     * returns string with filename for the MySQL helppage
 
28
     * about this storage engne
 
29
     *
 
30
     * @return  string  mysql helppage filename
 
31
     */
 
32
    function getMysqlHelpPage()
 
33
    {
 
34
        return 'ndbcluster';
 
35
    }
 
36
}
 
37
 
 
38
?>