diff --git a/reference/pgsql/functions/pg-escape-string.xml b/reference/pgsql/functions/pg-escape-string.xml index d01df907fb..c4eb5a6651 100644 --- a/reference/pgsql/functions/pg-escape-string.xml +++ b/reference/pgsql/functions/pg-escape-string.xml @@ -1,5 +1,5 @@ - + @@ -17,7 +17,7 @@ pg_escape_string escapes string for text/char datatype. It returns escaped string for - PostgreSQL. Use of this functon is recommended instead of + PostgreSQL. Use of this function is recommended instead of addslashes. diff --git a/reference/pgsql/functions/pg-fetch-result.xml b/reference/pgsql/functions/pg-fetch-result.xml index 202c6bbf6d..50f29e1860 100644 --- a/reference/pgsql/functions/pg-fetch-result.xml +++ b/reference/pgsql/functions/pg-fetch-result.xml @@ -1,5 +1,5 @@ - + @@ -18,7 +18,7 @@ pg_fetch_result returns values from a result resource returned by pg_query. row - is integer. field is field name(string) + is integer. field is field name (string) or field index (integer). The row and field specify what cell in the table of results to return. Row numbering starts from 0. Instead of diff --git a/reference/pgsql/functions/pg-insert.xml b/reference/pgsql/functions/pg-insert.xml index 52088cabf4..6c97a6b578 100644 --- a/reference/pgsql/functions/pg-insert.xml +++ b/reference/pgsql/functions/pg-insert.xml @@ -1,5 +1,5 @@ - + @@ -31,7 +31,7 @@ - + @@ -24,14 +24,14 @@ connection. Unlike pg_query, it can send multiple query to PostgreSQL and get the result one by one using - pg_get_result. Script execution is not block + pg_get_result. Script execution is not blocked while query is executing. Use pg_connection_busy to check connection is - busy (i.e. query is executing) Query may be canceled by calling + busy (i.e. query is executing). Query may be canceled by calling pg_cancel_query. - Although, user can send multiple query at once. User cannot send + Although user can send multiple query at once, user cannot send multiple query over busy connection. If query is sent while connection is busy, it waits until last query is finished and discards all result. diff --git a/reference/pgsql/functions/pg-set-client-encoding.xml b/reference/pgsql/functions/pg-set-client-encoding.xml index 72c228d5d8..9cb61688ae 100644 --- a/reference/pgsql/functions/pg-set-client-encoding.xml +++ b/reference/pgsql/functions/pg-set-client-encoding.xml @@ -1,5 +1,5 @@ - + @@ -17,7 +17,7 @@ pg_set_client_encoding sets the client - encoding and return 0 if success or -1 if error. + encoding and returns 0 if success or -1 if error. encoding is the client encoding and can be diff --git a/reference/pgsql/functions/pg-trace.xml b/reference/pgsql/functions/pg-trace.xml index fb891021cc..ae1b2483eb 100644 --- a/reference/pgsql/functions/pg-trace.xml +++ b/reference/pgsql/functions/pg-trace.xml @@ -1,5 +1,5 @@ - + @@ -27,7 +27,7 @@ manual. - Filename and mode + pathname and mode are the same as in fopen (mode defaults to 'w'), connection specifies the connection to