Saya telah membuat satu tabel di kacang PostGIS saya, saya tidak bisa memasukkan titik.
Apa yang salah dengan permintaan saya?
CREATE TABLE app (
p_id INTEGER PRIMARY KEY
);
SELECT AddGeometryColumn('app','the_geom','4326','POINT',2);
INSERT INTO app(p_id, the_geom) VALUES(2, POINT(-71.060316, 48.432044));
Setelah permintaan terakhir ini menunjukkan beberapa kesalahan ..
ERROR: column "the_geom" is of type geometry but expression is of type point
LINE 1: ...SERT INTO app(p_id, the_geom) VALUES(2, POINT(-71....
^
HINT: You will need to rewrite or cast the expression.
********** Error **********
ERROR: column "the_geom" is of type geometry but expression is of type point
SQL state: 42804
Hint: You will need to rewrite or cast the expression.
Character: 53
Saya sudah memeriksa versi PostGIS saya.
SELECT PostGIS_full_version();
Saya mendapat output berikut ..
"POSTGIS="1.5.3" GEOS="3.3.1-CAPI-1.7.1" PROJ="Rel. 4.7.1, 23 September 2009" LIBXML="2.7.3" USE_STATS"
Jika Anda bekerja dengan klien Java maka saran saya adalah menggunakan tipe biner untuk mentransfer data. Dari memori, saya mencatat peningkatan kinerja 10% ketika saya melakukan perubahan ini di atas metode ST_AsEWKT.
sumber