我正在使用Orient-db 2.2.13和VisualStudio2015,我試圖從c#.net到現有的orientDB執行一個簡單的「測試連接」方法。通過C#連接到OrientDB .net
在java中它是執行非常簡單:
OrientGraphFactory factory = new OrientGraphFactory(remoteUrl, user, password, false);
result = factory.getNoTx().command(new OCommandSQL("select....")).execute();
但在C#.NET這似乎是一個不太容易。 我的一切到目前爲止,這是(和它不工作)
OServer _server = new OServer(_hostname, _port, _rootUserName, _rootUserPassword);
ODatabase odb = new ODatabase(_hostname, _port, _DBname, ODatabaseType.Graph, _rootUserName, _rootUserPassword);
你能幫助我嗎?