Menu

#506 cubrid_connect_with_url example does not have updated connection url

open
nobody
None
5
2013-06-05
2013-06-05
Jira Trac
No

http://www.php.net/manual/en/function.cubrid-connect-with-url.php
{code}
$conn_url = CUBRID:localhost:33000:demodb:public:123456;
{code}

The url format is incorrect. It is missing a : at the end.
{code}
$conn_url = CUBRID:localhost:33000:demodb:public:123456:;
{code}

gives the error that the password is incorrect or missing (which is expected since public has no password in my case).

Discussion