如何使用 Python 通过 SSH 连接到 Sqlite3 数据库?

How Can I connect to Sqlite3 database over SSH using Python?

我需要通过 SSH 连接到 Linux 框中的 Sqlite3 数据库。我尝试通过 SSH 连接,然后单独连接到数据库,但这没有用。它只连接到 Linux 框,但在 Python 是 运行 的本地计算机中创建了另一个数据库(而不是连接)。我试图搜索但找不到任何解决方案。感谢您的帮助!

如果你可以forward the SQLite3 port, you can point python to the forwarded port and it will just work. You may want to set up rqlite通过 TCP 轻松公开你的 sqlite3 数据库。