When I try to create a database as follows:
OrientGraph graph = new OrientGraph("memory:mydb");
I get the exception:
E/AndroidRuntime( 4167): Caused by: java.lang.IllegalArgumentException: Cannot find a command executor for the command request: OCommandSQL [text=create class ORole cluster 3]
I tried printing the results of the command:
Set<String> names = OSQLEngine.getInstance().getCommandNames();
but the names set does not contain any elements.
I am building with Maven, including core and commons as indicated in the README. I'm using a Nexus 7 running Android 4.2.2. I'm not sure whether I'm just missing a step or setting, or if this is the result of version incompatibilities that have been introduced since you first made the port.
When I try to create a database as follows:
I get the exception:
I tried printing the results of the command:
but the names set does not contain any elements.
I am building with Maven, including core and commons as indicated in the README. I'm using a Nexus 7 running Android 4.2.2. I'm not sure whether I'm just missing a step or setting, or if this is the result of version incompatibilities that have been introduced since you first made the port.