Código HTML:
Ver original
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href=""> <script type="text/javascript"> var db = openDatabase("logros", "1.0", "", 2 * 1024 * 1024); db.transaction(function (tx){ tx.executeSql('CREATE TABLE IF NOT EXISTS juego (id unique, fecha, deporte, status, id_liga, id_deporte, id_inca)'); tx.executeSql('CREATE TABLE IF NOT EXISTS logro (id unique, id_juego, referencia, id_equipo, nombre, ml, rl, rll, srl, srll, ab, abl, pml, prl, prll, pab, pabl, inning, anota, gt, gtl)'); tx.executeSql('CREATE TABLE IF NOT EXISTS score (id, id_juego, nombre)'); tx.executeSql('INSERT INTO juego (id, fecha, deporte) VALUES (23, "29/01/2015", "NBA")'); tx.executeSql('INSERT INTO juego (id, fecha, deporte) VALUES (24, "29/01/2015", "NBA")'); tx.executeSql('INSERT INTO logro (id, id_juego, referencia) VALUES (4, 006, 23751)'); logro = tx.executeSql('select * from juego WHERE id=?',[]); alert(logro); }); </script> </head> <body> <table id="logros" border="1 px"> <tr> </tr> <tr> </tr> </table> </body> </html>