42BV / jarb

JARB - JAva Repository Bridge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Will it work with mongoDB?

VibhavChaddha opened this issue · comments

I want to know if it is compatible with MongoDB. If not, then can anyone suggest me one?

Jarb's main focus is handling database constraints, column metadata such as types, not null and lengths. Also providing handlers when constraints are violated, e.g. foreign keys and unique keys.

In MongoDB these constraints are not relevant, due to the database being scheme free. When using MongoDB I would suggest implementing these validity checks in your code.