如何在Jetbrains DataGrip中处理.dbf文件?我在macos上,需要使用.dbf文件。我设法在Shapefile explorer软件中打开了dbf文件。但我想使用DataGrip提供的很酷的功能。有可能吗?
发布于 2020-05-06 00:55:19
使用shp2pgsql
完成
例如:
shp2pgsql -s 4326 -g geom_4326 "file_name" schema.table | psql -h localhost -p 5432 -d database -U user
发布于 2020-04-20 17:04:02
没有办法做到这一点,甚至在跟踪器中也没有罚单:https://youtrack.jetbrains.com/issues/DBE
发布于 2021-04-08 23:45:20
我使用DBF包-非常简单的方法来发现dbf-to-sqlite
结构和里面的数据。它创建了开箱即用的DataGrip支持的SQLite数据库。
pip install dbf-to-sqlite
dbf-to-sqlite PIndx01.dbf post_index.sqlite
https://stackoverflow.com/questions/61288776
复制相似问题