Is it you are telling that both the method are same?
I have been using the ping method from the DBI module every time I execute a Postgresql query.
| [reply] |
| [reply] |
| [reply] |
Santhosh_89,
I support ping method man.
Update
Instead of connecting to the database every time when you execute the query, you connect with the database and by calling the ping method from DBI you can check the database connectivity, if the connection is alive, execute the query otherwise call the connect function and create database connection.
| [reply] |