Создание базового адаптера для searchview, использующего asynctask

db.getCollection('<collection>').update(
    // query 
    {},

    // update 
    {
        $set: {<field>:this.<field>+"<new string>"}
    },

    // options 
    {
        "multi" : true,  // update only one document 
        "upsert" : false  // insert a new document, if no existing document match the query 
    });
0
задан Sildoreth 24 February 2015 в 23:44
поделиться