home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / libraries / engines / memory.lib.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  563 b   |  28 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * @version $Id: memory.lib.php 10137 2007-03-19 17:55:39Z cybot_tm $
  5.  */
  6.  
  7. /**
  8.  * the MEMORY (HEAP) storage engine
  9.  */
  10. class PMA_StorageEngine_memory extends PMA_StorageEngine
  11. {
  12.     /**
  13.      * returns array with variable names dedicated to MyISAM storage engine
  14.      *
  15.      * @return  array   variable names
  16.      */
  17.     function getVariables()
  18.     {
  19.         return array(
  20.             'max_heap_table_size' => array(
  21.                 'type'  => PMA_ENGINE_DETAILS_TYPE_SIZE,
  22.             ),
  23.         );
  24.     }
  25. }
  26.  
  27. ?>
  28.