如何在 jetbrains datagrip 中 open/view/import .dbf 文件?

How to open/view/import .dbf file in jetbrains datagrip?

如何在 Jetbrains DataGrip 中使用 .dbf 文件? 我在 macOS 上,需要使用 .dbf 文件。我设法在 Shapefile 资源管理器软件中打开 dbf 文件。但我想使用 DataGrip 提供的很酷的功能。可能吗?

没有办法做到这一点,甚至跟踪器中也没有票:https://youtrack.jetbrains.com/issues/DBE

完成 shp2pgsql

例如:

shp2pgsql -s 4326 -g geom_4326 "file_name" schema.table | psql -h localhost -p 5432 -d database -U user

我使用 dbf-to-sqlite Python 包——发现 DBF 结构和数据的非常简单的方法。它创建了 DataGrip 开箱即用支持的 SQLite 数据库。

pip install dbf-to-sqlite
dbf-to-sqlite PIndx01.dbf post_index.sqlite