Current section

18 Versions

Jump to

Compare versions

9 files changed
+34 additions
-9 deletions
  @@ -571,7 +571,7 @@ see `epgsql.hrl` for the record definition. `epgsql` functions may also return
571 571 - `{unsupported_auth_method, Method}` - required auth method is unsupported
572 572 - `timeout` - request timed out
573 573 - `closed` - connection was closed
574 - - `sync_required` - error occured and epgsql:sync must be called
574 + - `sync_required` - error occurred and epgsql:sync must be called
575 575
576 576 ## Server Notifications
577 577
  @@ -651,7 +651,7 @@ Options (proplist or map):
651 651
652 652 `epgsql{a,i}:get_cmd_status(C) -> undefined | atom() | {atom(), integer()}`
653 653
654 - This function returns the last executed command's status information. It's usualy
654 + This function returns the last executed command's status information. It's usually
655 655 the name of SQL command and, for some of them (like UPDATE or INSERT) the
656 656 number of affected rows. See [libpq PQcmdStatus](https://www.postgresql.org/docs/current/static/libpq-exec.html#LIBPQ-PQCMDSTATUS).
657 657 But there is one interesting case: if you execute `COMMIT` on a failed transaction,
  @@ -47,4 +47,4 @@
47 47 {<<"links">>,[{<<"Github">>,<<"https://github.com/epgsql/epgsql">>}]}.
48 48 {<<"name">>,<<"epgsql">>}.
49 49 {<<"requirements">>,[]}.
50 - {<<"version">>,<<"4.6.0">>}.
50 + {<<"version">>,<<"4.6.1">>}.
  @@ -1,7 +1,7 @@
1 1 %%% @doc
2 2 %%% Codec for `geometry' PostGIS umbrella datatype.
3 3 %%%
4 - %%% XXX: PostGIS is not a Postgres's built-in datatype! It should be instaled
4 + %%% XXX: PostGIS is not a Postgres's built-in datatype! It should be installed
5 5 %%% separately and enabled via `CREATE EXTENSION postgis'.
6 6 %%% <ul>
7 7 %%% <li>[http://postgis.net/docs/manual-2.4/geometry.html]</li>
  @@ -5,7 +5,7 @@
5 5 %%% contains not just `byte()', an attempt to perform unicode conversion will be made.
6 6 %%%
7 7 %%% Also, `integer()', `float()' and `atom()' are automatically converted to
8 - %%% strings, but this kind of conversion might be eventualy removed.
8 + %%% strings, but this kind of conversion might be eventually removed.
9 9 %%% <ul>
10 10 %%% <li>[https://www.postgresql.org/docs/10/static/datatype-character.html]</li>
11 11 %%% <li>$PG$/src/backend/utils/adt/varchar.c</li>
  @@ -1,6 +1,6 @@
1 1 {application,epgsql,
2 2 [{description,"PostgreSQL Client"},
3 - {vsn,"4.6.0"},
3 + {vsn,"4.6.1"},
4 4 {modules,[]},
5 5 {registered,[]},
6 6 {applications,[kernel,stdlib,ssl]},
Loading more files…