ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilDBPdoMySQLInnoDB.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once('class.ilDBPdoMySQL.php');
5 
12 {
13 
17  protected $storage_engine = 'InnoDB';
18 
19 
23  public function supportsFulltext()
24  {
25  return false;
26  }
27 
28 
32  public function supportsTransactions()
33  {
34  return false;
35  }
36 
37 
44  public function addFulltextIndex($table_name, $afields, $a_name = 'in')
45  {
46  return false; // NOT SUPPORTED
47  }
48 }
Class ilDBPdoMySQL.
Interface ilDBInterface.
Class ilDBPdoMySQLInnoDB.
addFulltextIndex($table_name, $afields, $a_name='in')