Skip to content

¿Cómo agregar una nueva conexión postgis al navegador QGIS con pyqgis? #16

Discussion options

You must be logged in to vote

Hola @percyelbis puedes usar el siguiente code

import psycopg2

conn = psycopg2.connect("dbname='postgis'host='localhost' user='postgis'")
cur = conn.cursor()
sql = "SELECT ST_AsGeoJSON(geomfield) from testtable;"
cur.execute(sql)
result = cur.fetchone()
print result

Aquí te adjunto algunas referencias ⬇️

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ambarja
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pyqgis Todo sobre python en qgis postgis Bases de datos en qgis
2 participants