2

好吧,我有一个解析文件的 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),但我再次收到此错误。我应该如何更改数据并避免此错误?

4

1 回答 1

1

好吧,经过一些研究和一些测试,我终于找到了答案。这个问题不是python的问题,而是mysql的问题。

首先,我们需要我们的 Data 变量看起来像Data="LineString(1 1,2 2,3 3)". 然后,我们应该在 Insert 函数中编写(GeomFromText('%(Data)s')),以帮助 mysql 从文本中获取几何图形。因此,整个 Insert 行如下所示:

 sql="""INSERT INTO `polylines` (Type, Label, Data) VALUES ('%(Type)s', '%(Label)s', (GeomFromText('%(Data)s')))"""%{"Type":type, "Label":label, "Data":data} 

现在它起作用了!

于 2013-04-13T20:30:32.123 回答