SELECT FROM table compare values and insert or change

0

I would like to compare information coming from PHP Json and persist it in the WEBSQL.

There is a moment when I should know if the information coming from Mysql: Already registered Altered Not cadatrada

Below is the javascript that I would like you to do this BUT it is not working.

What is wrong?

function verificaSincronizacao(objetoJSON) {     
    db.readTransaction(function (t) {
        t.executeSql('SELECT * FROM tbl_appramal WHERE codigo = ?', [objetoJSON.ram_codigo], function (t, data) {
        var length = data.rows.length;

            if(length > 0){// Temos o cadastro já sincronizado
                if((data.rows[0].unidade != d.ram_unidade)){//Se dados for iguais não precisa atualizar
                    Atualiza(objetoJSON);
                }
            }else{//Caso não houver length dados não cadastrados então cadatrar
                Insere(objetoJSON);
            }
        });
    });     

}
    
asked by anonymous 19.01.2016 / 20:35

0 answers