I am testing JDBC connection of OrientDB v2.0.13 from Wolfram Language.
Needs["JLink`"]
AddToClassPath["C:\\OrientDB2013\\jdbc\\orientdb-jdbc-2.0.13-all.jar"];
Needs["DatabaseLink`"]
conn = OpenSQLConnection[
JDBC[
"com.orientechnologies.orient.jdbc.OrientJdbcDriver",
"jdbc:orient:remote:localhost/OpenBeer"]]
This is successfull SQLConnection has been created with Open Status on OrientDB database OpenBeer. For example, I can view the tables with
SQLTableInformation[conn, "ShowColumnHeadings"->True][[All, 3;;4]] //Sort //TableForm
(*
Beer TABLE
Brewery TABLE
Category TABLE
etc...
*)
But when I try
SQLExecute[conn,"SELECT * FROM Beer"]
$Failed
And the Messages window displays the error:
Java::excptn: "A Java exception occurred: "java.sql.SQLFeatureNotSupportedException"
at com.orientechnologies.orient.jdbc.OrientJdbcConnection.prepareStatement(OrientJdbcConnection.java:238)
at com.wolfram.databaselink.SQLStatementProcessor.processSQLStatement(SQLStatementProcessor.java:50).
Any ideas on how to fix that ?