MySQL engine : Engine Type « Engine « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » Engine » Engine Type 
MySQL engine
       

Table type         Description                                                     Files used
BDB                A transaction-safe table that the Berkeley DB handler           .frm, .MYD, .MYI
                   manages. For the most part, InnoDB tables have replaced
                   BDB tables.
MEMORY             A table whose contents are stored in memory.                    .frm

InnoDB             A transaction-safe table that the InnoDB handler manages.       .frm
                   As a result, data is not stored in a .MYD file, but instead is
                   managed in the InnoDB tablespace.
ISAM               A deprecated table type that was once the default table         .frm, .MYD, .MYI
                   type in MySQL. The MyISAM table type has replaced it,
                   although it is still supported for backward compatibility.
MERGE              Avirtual table that is made up of multiple MyISAM tables.       .frm, .MRG
                   Data is not stored in the MERGE table, but rather in the
                   underlying MyISAM tables.
MyISAM             The default table type in MySQL. MyISAM tables, which           .frm, .MYD, .MYI
                   have replaced ISAM tables, support extensive indexing
                   and are optimized for compressions and speed.

   
    
    
    
    
    
    
  
Related examples in the same category
1.Check the engine type
2.Six types of tables.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.