0
爲什麼這不起作用?無法連接到DataStax Enterprise Graph Db C#驅動程序
得到以下錯誤:
Dse.NoHostAvailableException:「試圖查詢的主機均無法
用下面的連接代碼:
IDseCluster dseCluster = DseCluster.Builder()
.AddContactPoint("ourdomain.com").WithPort(9042)
.WithAuthProvider(new DsePlainTextAuthProvider("---username--", "---password---"))
.WithGraphOptions(new GraphOptions().SetName("DSE_GRAPH_QUICKSTART"))
.Build();
IDseSession session = dseCluster.Connect();