You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
Hi, i am having some problems.
I want to use the bolt protocol with the EntityManager. When i do the connection with
`
$settings = $c->get('settings');
$connection = 'http://'.$settings['dbclient']['username'].':'.$settings['dbclient']['password'].'@'. $settings['dbclient']['host'].':'.$settings['dbclient']['port'];
$entitymanager = EntityManager::create($connection);
return $entitymanager;
`
it all works ok
but when i do the connection with
`
$settings = $c->get('settings');
$connection = 'bolt://'.$settings['dbclient']['username'].':'.$settings['dbclient']['password'].'@'. $settings['dbclient']['host'].':'.$settings['dbclient']['port'];
$entitymanager = EntityManager::create($connection);
return $entitymanager;
`
then i get the error:
What am i doing wrong??
The text was updated successfully, but these errors were encountered: