// transaction inicia a transação
db.transaction(function(tx){tx.executeSql('CREATE TABLE teste(id integer not null, nome text)')})
O FOCO DO NOSSO SITE É MATEMÁTICA E PROGRAMAÇÃO DE SOFTWERE
// transaction inicia a transação
db.transaction(function(tx){tx.executeSql('CREATE TABLE teste(id integer not null, nome text)')})
function insere(){
//--insere no banco de dados
var id_ = document.getElementById("id").value;
var nome_ = document.getElementById("nome").value;
document.getElementById("inserido").value = "DADOS INSERIDOS...";
//INSERE OS DADOS
db.transaction(function(transaction) {
transaction.executeSql('INSERT INTO teste(id, nome) VALUES (?,?)',[id_, nome_]);
});
}