-1

Is there a link on where to download GRIDFS driver for Android and a sample tutorial.I appreciate it.

padlanau
  • 257
  • 3
  • 11
  • I think what you need to appreciate is a little bit of advise saying **do not attempt to connect to a database from a remote client**. Use a REST API or some other service middleman as the intermediary here. Don't ever think a web client is safe to talk to a database. – Neil Lunn Sep 25 '14 at 12:19

1 Answers1

0

Gridfs is used by MongoDb to store large file in small chunks in database.

You don't have a separate .jar file for gridfs in android. It is already included in Mongo.jar. Import Mongo.jar in your project and you will have access to it.

Akshay Soam
  • 1,580
  • 3
  • 21
  • 39