Postgresql 和大型多维数组

发布于 2024-10-20 18:48:25 字数 232 浏览 2 评论 0原文

我曾经使用 mysql 并将巨大的 3 维数组保存为 blob 文件 但现在我正在使用 postgresql,它看起来支持数组数据类型。 是否有任何快速方法可以将这些大数组存储到 postgre 数据库中? 我的意思是每个 3d 数组都必须保存在 postgre 表中的单个单元格中,而不是作为表保存。 我正在使用Matlab,其中数据采用176x144x1750 Int数组的形式,我可以直接从matlab连接到数据库并执行查询。 感谢您的帮助。

i used to work with mysql and save my huge 3 dimensional arrays as blob files
but now i'm using postgresql and it looks like it supports array datatype.
does any fast method exist to store those big arrays into the postgre database?
i mean each 3d array has to be saved in a single cell from the postgre table and not as a table.
Im working with Matlab, where the data is in under the form of 176x144x1750 Int arrays, and i can directly connect to the database from matlab and execute queries.
thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫竹語嫣☆ 2024-10-27 18:48:25

我会使用三维数组。

例如:创建表(INTEGER
id 主键,数组 INTEGER[][][]
);

我想你会发现更多关于
postgres 多维数组在这
关联
http://www.chsd .com.br/index.php?option=Article&action=Show&view=Article&id=3

还有 PostgreSQL 页面。
http://www.postgresql.org/docs/9.0/static/arrays.html

I would use a three-dimensional array.

For example: CREATE TABLE ( INTEGER
id PRIMARY KEY, array INTEGER[][][]
);

I think you will find more tips about
postgres muldimensional arrays in this
link
http://www.chsd.com.br/index.php?option=Article&action=Show&view=Article&id=3

There is the PostgreSQL page too.
http://www.postgresql.org/docs/9.0/static/arrays.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文