summaryrefslogtreecommitdiffstats
path: root/lib/migrate.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/migrate.php')
-rw-r--r--lib/migrate.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/migrate.php b/lib/migrate.php
index 6b1497d1d0c..d7d1400e2fa 100644
--- a/lib/migrate.php
+++ b/lib/migrate.php
@@ -482,6 +482,12 @@ class OC_Migrate{
$datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" );
+ // DB type
+ if( !is_callable( 'sqlite_open' ) || !class_exists( 'SQLite3' ) ){
+ OC_Log::write( 'migration', 'SQLite not found', OC_Log::ERROR );
+ return false;
+ }
+
// Prepare options array
$options = array(
'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE),