Fix typos
This commit is contained in:
+1
-1
@@ -15,7 +15,7 @@
|
|||||||
* Encode and decode between all Go and PostgreSQL integer types with bounds checking
|
* Encode and decode between all Go and PostgreSQL integer types with bounds checking
|
||||||
* Decode inet/cidr to net.IP
|
* Decode inet/cidr to net.IP
|
||||||
* Encode/decode [][]byte to/from bytea[]
|
* Encode/decode [][]byte to/from bytea[]
|
||||||
* Encode/decode named types whoses underlying types are string, int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64
|
* Encode/decode named types whose underlying types are string, int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64
|
||||||
|
|
||||||
## Performance
|
## Performance
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ pgx also implements QueryRow in the same style as database/sql.
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
Use exec to execute a query that does not return a result set.
|
Use Exec to execute a query that does not return a result set.
|
||||||
|
|
||||||
commandTag, err := conn.Exec("delete from widgets where id=$1", 42)
|
commandTag, err := conn.Exec("delete from widgets where id=$1", 42)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user