首页 > 代码库 > go postgresql array

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