Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JDBC driver for mongodb

Recently I started working on mongodb and I have been using the mongodb java driver for database operations I also read about UnityJDBC - jdbc driver for mongodb. I know that UnityJDBC queries MongoDB with queries having SQL like syntax

What I dont understand - The difference between java driver for mongodb and jdbc driver for mongodb.

Edit : Can JDBC API be used for NoSQL Databases

like image 977
Rahul Avatar asked Sep 28 '22 16:09

Rahul


1 Answers

JDBC Connection is basically used to connect to server in remote machine. And normal java driver is used in a standalone system.You can not connect to a remote mongodb server using java driver.Hope this is what you need.Other wise let me know?

like image 80
Amaresh Avatar answered Sep 30 '22 09:09

Amaresh