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