0

Can I make database tables (like tables for sqlite in local db) on StackMob via android App?

How can I insert and get data to and from tables on StackMob account via android App?

And Kindly also tell me what's the maximum data we can store on StackMob?

I appreciate any help in advance.

Khalid Usman
  • 1,272
  • 1
  • 13
  • 32

1 Answers1

2

I think you will find everything you need on the StackMob developer website.

There's many tutorials on, for example, how to save an object or read it.

This will be a good start.

Michaël
  • 3,679
  • 7
  • 39
  • 64
  • can we save images on stackmob as well, and whats is the permission for maximum net size of data on stackmob single account – Khalid Usman Dec 04 '12 at 20:52
  • 2
    Agreed the developer website and tutorials are the best place to start. Text data is stored as objects and binary data is stored via Amazon S3. Once the binary data is saved to S3, the URL to the file is saved along with the object in the designated field. [How to upload to S3](http://developer.stackmob.com/tutorials/android/Upload-to-S3) and [how to configure your schema for binary data](http://developer.stackmob.com/tutorials/dashboard/Adding-a-Binary-Field-to-Schemas) – Sidney Maestre Dec 04 '12 at 22:30