We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Facts
This works fine when the db being checked exists:
$db_name = "GratefulDeadConcerts"; $db = new OrientDB('localhost'); try { $db->connect('root', '<rootpassword>'); }catch (OrientDBException $e) { die('Failed to connect(): ' . $e->getMessage()); } try { $exists = $db->DBExists($db_name); } catch (OrientDBException $e) { die('Failed to execute DBExists(): ' . $e->getMessage()); } var_dump($exists); // shows bool(true)
However, if I change $db_name to something non-existing, I get the following exception:
$db_name
Failed to execute DBExists(): java.lang.IllegalArgumentException: Cannot create database: storage mode 'local' is not supported.
Not sure if the issue is within the orientdb community server or your SDK .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Facts
This works fine when the db being checked exists:
However, if I change
$db_name
to something non-existing, I get the following exception:Not sure if the issue is within the orientdb community server or your SDK .
The text was updated successfully, but these errors were encountered: