ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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
10{
11
15 protected $storage_engine = 'InnoDB';
16
17
21 public function supportsFulltext()
22 {
23 return false;
24 }
25
26
30 public function supportsTransactions()
31 {
32 return false;
33 }
34
35
42 public function addFulltextIndex($table_name, $afields, $a_name = 'in')
43 {
44 return false; // NOT SUPPORTED
45 }
46}
An exception for terminatinating execution or to throw for unit testing.
Class ilDBPdoMySQLInnoDB.
addFulltextIndex($table_name, $afields, $a_name='in')
Class ilDBPdoMySQL.
Interface ilDBInterface.