diff --git a/doc/br/manual.html b/doc/br/manual.html
index ddb4d1b..1995734 100644
--- a/doc/br/manual.html
+++ b/doc/br/manual.html
@@ -340,13 +340,20 @@ o driver Postgres oferece as seguintes funcionalidades adicionais:
o driver MySQL ainda oferece as seguintes funcionalidades adicionais:
- env:connect(sourcename[,username[,password[,hostname[,port]]]])
+ env:connect(sourcename[,username[,password[,hostname[,port[,socket[,client_flag]]]]]])
- No driver MySQL, esse método tem mais dois parâmetros opcionais que indicam o
hostname
e a port
a serem utilizados na conexão.
+ Ela também aceita dois outros parâmetros que indicam um Unix socket de onde abrir a conexão e um flag do cliente.
Veja também: ambiente
Retorna: uma conexão
+ conn:ping()
+ - Verifica se uma conexão está fechada (retorna false) ou aberta (retorna true).
+ Irá retornar nil seguido de uma mensagem no caso de erro.
+ Retorna: true, se a conexão estiver aberta, ou false, se estiver fechada.
+
+
cur:numrows()
- Veja também: cursores
Retorna: o número de registros no resultado da busca.
diff --git a/doc/us/history.html b/doc/us/history.html
index 2adec2b..24b97d2 100644
--- a/doc/us/history.html
+++ b/doc/us/history.html
@@ -44,6 +44,14 @@
History
+ - LuaSQL 2.4.0 [??/??/2018]
+ -
+
+ - Added support in MySQL driver for opening a connection based on a Unix socket (thanks to rafis)
+ - Added connection ping method (thanks to rafis)
+
+
+
- LuaSQL 2.3.5 [23/Feb/2017]
-
diff --git a/doc/us/manual.html b/doc/us/manual.html
index edbc80f..d93c4c9 100644
--- a/doc/us/manual.html
+++ b/doc/us/manual.html
@@ -342,9 +342,11 @@ the Postgres driver also offers these extra features:
the MySQL driver also offers these extra features:
- env:connect(sourcename[,username[,password[,hostname[,port]]]])
+ env:connect(sourcename[,username[,password[,hostname[,port[,socket[,client_flag]]]]]])
- In the MySQL driver, this method adds two optional parameters
- that indicate the hostname and port to connect.
+ that indicate the hostname and port to connect.
+ It also accepts two optional parameters that indicate a unix socket and the
+ client flag.
See also: environment objects
Returns: a connection object
@@ -363,6 +365,13 @@ the MySQL driver also offers these extra features:
Returns: the number of the last value generated for an AUTO_INCREMENT column.
+
+ conn:ping()
+ - Check whether the connection is closed (returns false) or opened (returns true).
+ It will return nil followed by an error message in case of error.
+ Returns: true, if the connection is opened, or false, if it is closed.
+
+
cur:numrows()
- See also: cursor objects
Returns: the number of rows in the query result.