what is the JDBC driver class name for mongodb?

前端 未结 4 2033
执笔经年
执笔经年 2020-12-10 05:05

Like com.mysql.jdbc.Driver in the case of mysql, what would be the JDBC driver class for mongodb?

In

4条回答
  •  时光说笑
    2020-12-10 05:35

    You can try and use below details as reference

    JDBC Driver class name: mongodb.jdbc.MongoDriver

    URL format:jdbc:mongo://<\serverName>/<\databaseName>

    e.g. url="jdbc:mongo://ds029847.mongolab.com:29847/tpch";

    Con = DriverManager.getConnection(url, "dbuser", "dbuser");

    Hope this will help.

提交回复
热议问题