Закончилось заставить его работать под Windows, но пришлось сделать следующее
1) Создать файл свойств со следующим (sqlite2.properties)
description=SQLite2
connectionSpec=jdbc:sqlite:<db>
db=path to database or :memory:
driver=org.sqlite.JDBC
# Sample path to the SQLite drivers.
# Use -dp to override.
driverPath=sqlite.jar
2) Загрузитьприведенные выше драйверы и скопируйте один из них в sqlite.jar
3) Загрузите и установите версию Graphviz 2.2.1 (должна быть как минимум на windows)
4) Запустите командную строку как
java -jar schemaSpy_5.0.0.jar -t sqlite2 -u admin -db ./db.sqlite -dp sqlite.jar -o output -gv "C:\Program Files (x86)\Graphviz 2.28\"
where
-jar is the jar file for the schemaSpy
-t is the type of database, in our case the properties file
-u username is needed, can be anything I guess
-db is the database to be scanned
-dp is the jar filename of the driver renamed above
-o is the output directory
-gv is the location of the graphviz installation, in this case on windows
Если я получу эту работу на MAC, я также опубликую
Надеюсь, это поможет.
Создает довольно хорошее сканирование базы данных в формате HTML.