2
0

Add hstore to docs

This commit is contained in:
Jack Christensen
2014-09-19 17:38:35 -05:00
parent 98853ea98f
commit 0a213e6474
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -131,6 +131,12 @@ and the equivalent PostgreSQL array type. Go slices of native types do not
support nulls, so if a PostgreSQL array that contains a slice is read into a
native Go slice an error will occur.
Hstore Mapping
pgx includes an Hstore type and a NullHstore type. Hstore is simply a
map[string]string and is preferred when the hstore contains no nulls. NullHstore
follows the Null* pattern and supports null values.
Custom Type Support
pgx includes support for the common data types like integers, floats, strings,