ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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
4require_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}
An exception for terminatinating execution or to throw for unit testing.
Class ilDBPdoMySQLInnoDB.
addFulltextIndex($table_name, $afields, $a_name='in')
Class ilDBPdoMySQL.
Interface ilDBInterface.