We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 000e818 commit f983abcCopy full SHA for f983abc
components/ImportExportBundle/bin/mdb-to-sqlite.bash
@@ -11,7 +11,7 @@ echo "Starting conversion in ${tmp_dir}"
11
mkdir -p $tmp_dir
12
mdb-schema $mdb_path sqlite > ${tmp_dir}/schema.sql
13
mkdir -p ${tmp_dir}/sql
14
-for i in $( mdb-tables $mdb_path ); do mdb-export --quote="'" -D "%Y-%m-%d %H:%M:%S" -H -I sqlite $mdb_path $i > ${tmp_dir}/sql/$i.sql; done
+for i in $( mdb-tables $mdb_path ); do mdb-export -q "'" -D "%Y-%m-%d %H:%M:%S" -H -I sqlite $mdb_path $i > ${tmp_dir}/sql/$i.sql; done
15
cat ${tmp_dir}/schema.sql | sqlite3 $sqlite_path
16
for f in ${tmp_dir}/sql/* ; do (echo 'BEGIN;'; cat $f; echo 'COMMIT;') | sqlite3 $sqlite_path; done
17
rm -rf $tmp_dir
0 commit comments