From 39f9ddf7c50ac8dac217d616003a839f2abec0b0 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 2 Jan 2012 13:21:26 +0100 Subject: [PATCH] Disable sqlite support until sqlite offer a way to create foreign keys after table creation. --- htdocs/install/fileconf.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/install/fileconf.php b/htdocs/install/fileconf.php index ee94fa6aef8..8292268d717 100644 --- a/htdocs/install/fileconf.php +++ b/htdocs/install/fileconf.php @@ -283,6 +283,8 @@ if (! empty($force_install_message)) $class='DoliDB'.ucfirst($type); include_once($dir."/".$file); + if ($type == 'sqlite') continue; // We hide sqlite because support can't be complete unti sqlit does not manage foreign key creation after table creation + // Version min of database $versionbasemin=getStaticMember($class, 'versionmin'); $note='('.getStaticMember($class, 'label').' >= '.versiontostring($versionbasemin).')';