diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/database.mysql.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc index 449622f11..3bae578fb 100644 --- a/includes/database.mysql.inc +++ b/includes/database.mysql.inc @@ -12,11 +12,11 @@ function db_connect($url) { mysql_connect($url["host"], $url["user"], $url["pass"]) or die(mysql_error()); mysql_select_db(substr($url["path"], 1)) or die("unable to select database"); - /* + /* ** Note that you can change the 'mysql_connect' statement to 'mysql_pconnect' - ** if you want to use persistent connections. This is not recommended on + ** if you want to use persistent connections. This is not recommended on ** shared hosts, might require additional database/webserver tuning but - ** increases performance when the overhead to connect to your database is + ** increases performance when the overhead to connect to your database is ** high (eg. your database and webserver live on different machines). */ } |