我正在使用带有 hstore 扩展 1.1 的 PostGreSQL 9.2
我有一个python dict,它包含不同类型的数据,即。整数和字符。
dict = {"type": 1 , "precision": 0 , "width": 20 , "name": "test" }
将此 dict 保存到 hstore 字段时,数据“test”出现错误,因为它不是整数。
如果我将所有数据保存在 char 中,就不会出现错误
dict = {"type": "1" , "precision": "0" , "width": "20" , "name": "test" }
我只能在 hstore 字段中拥有具有唯一类型的数据是否正常?有没有办法存储不同类型的数据?