what is the JDBC driver class name for mongodb?

前端 未结 4 2043
执笔经年
执笔经年 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:39

    In Java:

    // To connect to mongodb server
             MongoClient mongoClient = new MongoClient( "localhost" , 27017 );
    

提交回复
热议问题