mydb.transaction(function (tx) {
tx.executeSql('INSERT INTO Patients (id,firstname,mrn,zip) VALUES (1,"A","1","11790")');
tx.executeSql('INSERT INTO Patients (id,firstname,mrn,zip) VALUES (2,"B","2","11790")');
tx.executeSql('INSERT INTO Patients (id,firstname,mrn,zip) VALUES (3,"C","3","11792")');
tx.executeSql('INSERT INTO Patients (id,firstname,mrn,zip) VALUES (4,"D","4","11790")');
tx.executeSql('INSERT INTO Patients (id,firstname,mrn,zip) VALUES (5,"E","5","11791")');
tx.executeSql('INSERT INTO Encounter (id,description,mrnofpatient) VALUES (1,"Cold","1")');
tx.executeSql('INSERT INTO Encounter (id,description,mrnofpatient) VALUES (2,"Fever","2")');
tx.executeSql('INSERT INTO Encounter (id,description,mrnofpatient) VALUES (3,"Flu","3")');
tx.executeSql('INSERT INTO Labs (id,value,mrnofpatient) VALUES (3,145,"1")');
tx.executeSql('INSERT INTO Labs (id,value,mrnofpatient) VALUES (2,155,"2")');
})