I am building an application with Angular js and Taffy DB.
1.Where will be the data stored?In browser?
2.How to view the data stored?
3.How to select the data stored?
Please Advice
No, the data is stored in an TAFFY object like an array variable in your code.
db().get(); - returns array with all stored data
db({column:value}).get(); - is like select * from table where column = value
Taffy don't trigger Angular scope update automatically, you need to do it manually.
more info : http://www.taffydb.com/writingqueries
No, the data is stored in an TAFFY object like an array variable in your code.
db().get(); - returns array with all stored data
db({column:value}).get(); - is like select * from table where column = value
Taffy don't trigger Angular scope update automatically, you need to do it manually.
more info : http://www.taffydb.com/writingqueries