Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 608 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 608 Bytes

Mongo JDBC Driver

EXPERIMENTAL

This is an experimental JDBC driver for MongoDB. It attempts to map some basic SQL to MongoDB syntax.
One of the interesting things is that if you use prepared statements, you can actually use embedded objects, etc... quite nicely. See examples/ for more info, ideas.

Home: http://github.com/erh/mongo-jdbc/

License: Apache 2

Supported

  • SELECT
    • field selector
    • order by
  • INSERT
  • UPDATE
    • basics
  • DROP

TODO

  • create index
  • insert & getLastError
  • embedded objects (foo.bar)
  • prepared statements
  • (s|g)etObject( 0 )