3

我使用 PostgreSQL 作为我的应用程序的数据库。我也使用 ORMLite 作为映射。

在数据库表中,我使用点作为数据类型来存储目标的位置 (x,y)。

所以我的问题是:如何在 ORMLite 中映射 PostgreSQL 中的类型点?

4

2 回答 2

1
@DatabaseTable(tableName = "point")
public class Point {
     @DatabaseField(generatedId = true, index=true)
     public Long id;

     @DatabaseField()
     public Integer x;

     @DatabaseField()
     public Integer y;


}

但是,是的,请让你的问题更清楚

于 2013-03-15T11:38:36.760 回答
0

这是一个老问题,但我也一直在寻找解决方案,但没有找到。

这里有一个ormlite补丁的建议

https://github.com/j256/ormlite-core/issues/68

于 2015-12-07T22:09:17.913 回答