gpt4 book ai didi

macos - 尝试使用 OSX 使用 schemacrawler 连接到 sqlite 数据库 - 为什么它要求用户?

转载 作者:IT王子 更新时间:2023-10-29 06:29:28 25 4
gpt4 key购买 nike

见底部的结论:

我正在尝试使用 schemacrawler 绘制 sqlite 数据库图。我的设置:

  • 操作系统 10.8
  • Here 下载的 SchemaCrawler 10.5
  • 从 Oracle 下载的 Java 版本 1.7.0_45
  • sqlite 版本:3.7.12 2012-04-03 19:43:07 86b8481be7e76cccc92d14ce762d21bfb69504af

我在安装 schemacrawler 的目录中,并使用此命令行:

stebro$ java -classpath lib/*:. schemacrawler.tools.sqlite.Main /Library/Application\ Support/MyApp/Data/MyApp.db -command="select count(*) from myTable" -infolevel=maximum
SchemaCrawler 10.5
Copyright (c) 2000-2013, Sualeh Fatehi.

SchemaCrawler is a database schema discovery and comprehension tool.
You can search for database schema objects using regular expressions,
and output the schema and data in a readable text format. You can find
potential schema design issues with lint. The output serves for
database documentation is designed to be diff-ed against other database
schemas. SchemaCrawler also generates schema diagrams.
password:
java.sql.SQLException: Could not connect to database, for user null
at schemacrawler.schemacrawler.BaseDatabaseConnectionOptions.getConnection(BaseDatabaseConnectionOptions.java:93)
at schemacrawler.schemacrawler.BaseDatabaseConnectionOptions.getConnection(BaseDatabaseConnectionOptions.java:70)
at schemacrawler.tools.commandline.SchemaCrawlerCommandLine.execute(SchemaCrawlerCommandLine.java:173)
at schemacrawler.tools.commandline.SchemaCrawlerMain.main(SchemaCrawlerMain.java:93)
at schemacrawler.tools.commandline.SchemaCrawlerMain.main(SchemaCrawlerMain.java:52)
at schemacrawler.tools.sqlite.Main.main(Main.java:43)
Caused by: java.lang.IllegalArgumentException: Insufficient parameters for database connection URL: missing [database]
at schemacrawler.schemacrawler.DatabaseConfigConnectionOptions.getConnectionUrl(DatabaseConfigConnectionOptions.java:73)
at schemacrawler.schemacrawler.BaseDatabaseConnectionOptions.getConnection(BaseDatabaseConnectionOptions.java:89)
... 5 more

如果我指定 -password,我会得到同样的错误,并且为 -user 指定不同的值也会产生同样的错误。 Sqlite 不需要用户名/密码 - 为什么 jdbc 或 schemacrawler 要求我提供一个?

附录:

下面是一系列特定的命令,这些命令创建一个简单的数据库,然后尝试使用 schemacrawler 绘制它:

bash-3.2$ sqlite3 MyApp.db
sqlite3 MyApp.db
SQLite version 3.7.12 2012-04-03 19:43:07
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table smbtest(col1 integer, col2 integer);
create table smbtest(col1 integer, col2 integer);
sqlite> ^D
bash-3.2$ ~/bin/sunjava -classpath lib/*:. schemacrawler.tools.sqlite.Main -database=MyApp.db -infolevel=maximum -command=graph -outputformat=pdf -outputfile=myapp.pdf
SchemaCrawler 10.5
Copyright (c) 2000-2013, Sualeh Fatehi.

SchemaCrawler is a database schema discovery and comprehension tool.
You can search for database schema objects using regular expressions,
and output the schema and data in a readable text format. You can find
potential schema design issues with lint. The output serves for
database documentation is designed to be diff-ed against other database
schemas. SchemaCrawler also generates schema diagrams.
password:

Graphviz was not available to create the requested graph. Please reinstall
Graphviz, and make it available on the system PATH. Meanwhile, a .dot text file
has been created instead. This .dot file can be opened in any Graphviz file
viewer.
java.io.IOException: Cannot run program "dot": error=2, No such file or directory
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041)
at schemacrawler.tools.integration.graph.ProcessExecutor.execute(ProcessExecutor.java:124)
at schemacrawler.tools.integration.graph.GraphGenerator.generateDiagram(GraphGenerator.java:87)
at schemacrawler.tools.integration.graph.GraphExecutable.executeOn(GraphExecutable.java:123)
at schemacrawler.tools.executable.SchemaCrawlerExecutable.executeOn(SchemaCrawlerExecutable.java:87)
at schemacrawler.tools.executable.BaseExecutable.execute(BaseExecutable.java:77)
at schemacrawler.tools.commandline.SchemaCrawlerCommandLine.execute(SchemaCrawlerCommandLine.java:176)
at schemacrawler.tools.commandline.SchemaCrawlerMain.main(SchemaCrawlerMain.java:93)
at schemacrawler.tools.commandline.SchemaCrawlerMain.main(SchemaCrawlerMain.java:52)
at schemacrawler.tools.sqlite.Main.main(Main.java:43)
Caused by: java.io.IOException: error=2, No such file or directory
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.<init>(UNIXProcess.java:135)
at java.lang.ProcessImpl.start(ProcessImpl.java:130)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1022)
... 9 more

最终结论:问题在于我的数据库的路径中有一个空格;没有反斜杠、双引号或单引号的组合,或两者都解决了问题。从与我的 db 文件相同的目录运行命令就可以了。空格问题可能是由于我不理解在 bash 中使用的正确转义序列 - 如果 schemacrawler 使用我的名字作为命令行的一部分生成其他进程,我可能不得不两次转义空格。

但是,该应用程序确实继续询问我的密码,但只需按 Enter 即可成功继续。

最佳答案

史蒂夫,

您需要像这样指定数据库:

"-database=/Library/Application Support/MyApp/Data/MyApp.db"

注意双引号允许数据库文件路径中的空格,以及 -database 命令行开关。我还删除了反斜杠,因为整个开关都包含在双引号中。

如需命令行帮助,只需运行:

java -classpath lib/*:. schemacrawler.tools.sqlite.Main

Sualeh Fatehi,SchemaCrawler

关于macos - 尝试使用 OSX 使用 schemacrawler 连接到 sqlite 数据库 - 为什么它要求用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19659846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com