Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 PostgreSQL 作为我的应用程序的数据库。我也使用 ORMLite 作为映射。
在数据库表中,我使用点作为数据类型来存储目标的位置 (x,y)。
所以我的问题是:如何在 ORMLite 中映射 PostgreSQL 中的类型点?
@DatabaseTable(tableName = "point") public class Point { @DatabaseField(generatedId = true, index=true) public Long id; @DatabaseField() public Integer x; @DatabaseField() public Integer y; }
但是,是的,请让你的问题更清楚
这是一个老问题,但我也一直在寻找解决方案,但没有找到。
这里有一个ormlite补丁的建议
https://github.com/j256/ormlite-core/issues/68