Howto insert geometry in h2 using sql

前端 未结 2 1583
小鲜肉
小鲜肉 2021-01-20 16:23

Since a couple of versions, h2 does have support for spatial geometries.

It\'s not a problem to select and insert geometries in java. But how can insert them in pure

2条回答
  •  萌比男神i
    2021-01-20 16:52

    As far as I see, the suffix SRID=4326 is not WKT (Well-Known Text), but EWKT.

    The H2 database currently does not support EWKT (Extended Well-Known Text). You would have to use 'POINT(7 52)'. A complete example:

    create table feature(id int, name varchar(255), 
    description varchar(255), geom geometry);
    insert into feature (id, name, description, geom) values
    (1, 'example name', 'example description', 'POINT(7 52)');
    

提交回复
热议问题