Skip to content

dirigible-io/mongo-jdbc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mongo-jdbc

Hey! We have moved. Find us here.

JDBC channel for MongoDB. While this driver mostly adheres to the JDBC ways of connections, statements and resultsets, note that this driver does not translate to/from SQL. It uses Mongo's query format instead. Example:

Statement st = conn.createStatement(); ResultSet rs = st.executeQuery("{ filter: {$text:{$search:"name"}} }"); while(rs.next()){ System.out.println(rs.getString("name")); } rs.close();

Releases

No releases published

Packages

No packages published

Languages