go postgresql array
Posted dy blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go postgresql array相关的知识,希望对你有一定的参考价值。
将postgresql数组字段的初始值定为空串时报错,应设置为‘{}‘
pq: 有缺陷的数组常量:""
若数组字段rows.Scan用interface{}输入,会乱码,但如果字段可为null,scan又会报错
最后将表里面的字段设为not null,然后go读出的string为image=="{... , ... , ...}"
strings.Split(image[1:len(image)-1],",")
以上是关于go postgresql array的主要内容,如果未能解决你的问题,请参考以下文章
golang基础-Postgresql-ORM框架github.com/go-pg/pg学习五(实战)