diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index cb6c700738..cf867d9392 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -110,6 +110,13 @@ class ConvertType extends Command {
protected function execute(InputInterface $input, OutputInterface $output) {
$type = $input->getArgument('type');
+ if ($this->connectionFactory->normalizeType($type) === 'sqlite3') {
+ $output->writeln(sprintf(
+ 'Converting to SQLite (sqlite3) is currently not supported.',
+ $type
+ ));
+ return 1;
+ }
if ($type === $this->config->getValue('dbtype', '')) {
$output->writeln(sprintf(
'Can not convert from %1$s to %1$s.',