I gave node-orientdb a try; there are no problems with running Queries/Commands but trying to use *graphdb.createVertex() *did not correctly create the data in the proper class. At first I had an error *"Class 'User' is not an instance of V"*, I changed the driver code to fix this error (as described below). That fixed the exception and did create a record, however that record is not in the proper Class. So I'm sticking to user SQL Queries for now. Too bad. I really wanted to play with some of the other functions.
var VERTEX_CLASS_NAME = "V"; var EDGE_CLASS_NAME = "E"; instead of var VERTEX_CLASS_NAME = "OGraphVertex"; var EDGE_CLASS_NAME = "OGraphEdge"; On Tuesday, January 14, 2014 4:40:32 PM UTC+2, Giraldo Rosales wrote: > > We are using the binary version ( > https://github.com/gabipetrovay/node-orientdb). The orientdb-js using the > http requests and is using the JavaScript API bundled with OrientDB. And > hasn't been updated since Sep 8th 2011. Although node-orientdb is a bit > dated, it isn't as dated as the orientdb-js version. The developers on > node-orientdb do not seem to be motivated to update it until they have > their own personal need (stated by them in another post). They are still > using OrientDB 1.3. So I wouldn't expect updates anytime soon unless > someone else takes over. > > We are able to accomplish most tasks using sql with the command action > using node-orientdb. The missing functionality seems to be: > > - RECORD_CHANGE_IDENTITY > - RECORD_CLEAN_OUT > - POSITIONS_FLOOR > - POSITIONS_CEILING > - PUSH_RECORD > - PUSH_DISTRIB_CONFIG > - DB_COPY > - REPLICATION > - CLUSTER > > Hopefully it is updated soon but if your project isn't dependent on the > above, you should be ok. > > > > > On Tuesday, January 14, 2014 8:57:19 AM UTC-5, SHak wrote: >> >> here is another one that I found >> https://github.com/orientechnologies/orientdb-js sadly the author did >> not put any detail on the page which normally would make me move on to >> something else. However, I found this wiki on orientDB page regarding this >> code. >> >> here is the wiki: >> https://github.com/orientechnologies/orientdb-js/wiki >> >> I was able to run SQL requests without any trouble, though it has many >> more features that I will investigate further today. >> > -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
