gpt4 book ai didi

python - Python 中 geoalchemy2 的 Spatialite 后端

转载 作者:行者123 更新时间:2023-12-01 08:57:07 26 4
gpt4 key购买 nike

我正在尝试使用 geoalchemy2 进行 SQLITE/spatialite。根据link似乎是可能的.

我认为我的问题来自自定义引擎。

到目前为止我所拥有的:

from flask_sqlalchemy import SQLAlchemy
from geoalchemy2 import Geometry
#and other imports...

app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////Users/cricket/Documents/peas project/open-peas/localapp/test.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['SQLALCHEMY_ECHO'] = True

db = SQLAlchemy(app)

class Polygon(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(64), unique=True)
point = db.Column(Geometry("POLYGON"))

@app.before_first_request
def init_request():
db.create_all()

当我启动脚本时,我收到以下消息:

cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) near "POLYGON": syntax error [SQL: '\nCREATE TABLE polygon (\n\tid INTEGER NOT NULL, \n\tname VARCHAR(64), \n\tpoint geometry(POLYGON,-1), \n\tPRIMARY KEY (id), \n\tUNIQUE (name)\n)\n\n'] (Background on this error at: http://sqlalche.me/e/e3q8)

知道如何解决这个问题吗?

最佳答案

我也遇到了同样的问题,花了一段时间才解决。有很多层(SQLAlchemy、Flask、SQLite、spatialite、Flask 的 SQLAlchemy 扩展,......)一起工作。希望这有帮助:

from sqlalchemy import event

db = SQLAlchemy(app)

@event.listens_for(db.engine, "connect")
def load_spatialite(dbapi_conn, connection_record):
# From https://geoalchemy-2.readthedocs.io/en/latest/spatialite_tutorial.html
dbapi_conn.enable_load_extension(True)
dbapi_conn.load_extension('/usr/lib/x86_64-linux-gnu/mod_spatialite.so')

关于python - Python 中 geoalchemy2 的 Spatialite 后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52723239/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com