MySQL Forums :: GIS :: Import SHP into MySQL.
原文地址
http://forums.mysql.com/read.php?23,122827,206841
软件下载链接
开始操作啦!!!
默认情况下,配置好链接属性
链接名随意~
软件界面比较原始,但是就这么着呗~
打开软件:FWTools Shell ,如上
添上代码:
ogr2ogr -f "MySQL" MySQL:"dbname,user=root,host=localhost,password=secret" -lco engine=MYISAM source.shp
标红的是可能需要修改的,例如我自己的电脑上有mysql,存honghu.shp, 那么代码是这样:
ogr2ogr -f "MySQL" MySQL:"map,user=root,host=localhost,password=admin" -lco engine=MYISAM D:\tempdata\honghu.shp
结果如下:
自己体会吧~
原文:http://www.cnblogs.com/mcgaradytien/p/5212551.html