好吧,我有一个解析文件的 python 程序。这些文件中的数据如下所示:
Type=0x21
Label=2428
Data1=(54.67346,59.00001),(54.67415,59.00242),(54.67758,59.00001)
这是我的代码,它将解析的数据发送到 MySql 数据库
import MySQLdb
f = open('test.mp', 'r')
db = MySQLdb.connect(host="127.0.0.1", user="root", passwd="", db="gis", charset='utf8')
cursor = db.cursor()
i=0
for line in f.readlines():
if (line.startswith("Type")):
type=line[5:]
if (line.startswith("Label")):
label=line[6:]
if (line.startswith("Data")):
data=line[6:]
sql="""INSERT INTO `polylines` (Type, Label, Data) VALUES ('%(Type)s', '%(Label)s', '%(Data)s')"""%{"Type":type, "Label":label, "Data":data}
cursor.execute(sql)
db.commit()
db.close()
f.close()
而且我总是遇到同样的错误-
_mysql_exceptions.OperationalError: (1416, 'Cannot get
geometry object from data you send to the GEOMETRY field')
我认为这是因为我将 Data 变量中的数据发送到数据库中的 Linestring 字段。我尝试将发送的日期更改为 (1 1,2 2,3 3),但我再次收到此错误。我应该如何更改数据并避免此错误?