There is option of GridFS but that requires a driver(some language). Can't we insert a file in a table and display as a field(may b the path of file)? I tried one approach using Gridfs in python.
from pymongo import MongoClient
import gridfs
db = MongoClient().gridfs_example
fs = gridfs.GridFS(db)
a = fs.put("hello world")
After using the last command in pymongo, a error is coming..