-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasededatos.html
198 lines (158 loc) · 7.42 KB
/
basededatos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejemplo WebSQL</title>
<style>
table,tr,td,th {
border:1px solid #ccc;
border-radius:5px;
padding:10px;
margin:10px;
}
th {
background-color: lightgray;
}
#lastSqlSentences {
font-family: monospace;
}
body > div {
padding: 5px;
}
#queryArea {
background-color: lightblue;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
function listTables(dbInstance) {
executeSql(
dbInstance,
"SELECT name as 'Nombre de la tabla', sql as 'Sentencia SQL que creó la tabla' from sqlite_master WHERE type='table' and not(name like '@_@_%' ESCAPE '@' or name like 'sqlite_%');",
"#listTables",
false
);
}
function executeSql(dbInstance, sql, idResult, seeHour) {
if (idResult === undefined) idResult = '#sqlResult';
function errorHandler(transaction, errorFromSql) {
let message = '';
if (idResult === '#sqlResult') {
message += '<p><strong>Sentencia SQL:</strong> <em>' + sql + '</em></p>';
}
message += "<span style='color:red'>Error: " + errorFromSql.message + "</span>";
$(idResult).html(message);
if (idResult === '#sqlResult') {
let count = $("#lastSqlSentences li").length + 1;
$("#lastSqlSentences").prepend("<li onclick=\"rerun(\'#sql" + count + "\')\" style='color: red'><strong>(Error)</strong> <span id=\"sql" + count + "\">" + sql + "</lem>");
}
}
dbInstance.transaction(
(tran) => tran.executeSql(
sql,
[],
(tran, data) => {
var html = '';
if (idResult === '#sqlResult') {
html += '<p><strong>Sentencia SQL:</strong> <em>' + sql + '</em></p>';
}
if (data.rows.length > 0) {
html += '<table><thead>';
var properties = Object.getOwnPropertyNames(data.rows[0]);
html += '<tr>';
for (let j = 0; j < properties.length; j++) {
html += '<th>' + properties[j] + '</th>';
}
html += '</tr></thead><tbody>';
for (let i = 0; i < data.rows.length; i++) {
html += '<tr>'
for (let j = 0; j < properties.length; j++) {
html += '<td>' + data.rows[i][properties[j]] + '</td>';
}
html += '</tr>';
}
html += '</tbody></table>';
}
else
{
html += "<p>La sentencia SQL es correcta. No se ha devuelto ninguna fila.</p>"
}
$(idResult).html(html);
if (idResult === '#sqlResult') {
let count = $("#lastSqlSentences li").length + 1;
$("#lastSqlSentences").prepend("<li onclick=\"rerun(\'#sql" + count + "\')\" style='color: green'><strong>(Correcto)</strong> <span id=\"sql" + count + "\">" + sql + "</lem>");
}
},
errorHandler
)
);
}
function rerun(anchor) {
let sql = $(anchor).text();
$("#query").val(sql);
}
$(document).ready(function() {
var myDBInstance = openDatabase('dbSibeeshPassion', '1.0', 'Esto es una base de datos del navegador.', 2 * 1024 * 1024);
if (!myDBInstance) {
alert('Ups, la base de datos no se ha podido crear.');
}
else {
var version = myDBInstance.version;
$("#version").text(version);
listTables(myDBInstance);
}
executeSql(myDBInstance, "create table if not exists [Personas] (id integer not null primary key autoincrement, nombre varchar, apellidos varchar, telefono integer);");
listTables(myDBInstance);
$("button#insertSelect").click(function() {
$("#query").val('select * from [Personas];');
});
$("button#insertInsert").click(function() {
$("#query").val('insert into [Personas] (nombre, apellidos, telefono) values (\'Nombre\', \'Apellidos\', 987654321);');
});
$("button#insertCreateTable").click(function() {
$("#query").val('create table if not exists [Personas] (id integer not null primary key autoincrement, nombre varchar, apellidos varchar, telefono integer);');
});
$("button#insertDropTable").click(function() {
$("#query").val('drop table [Personas];');
});
$("button#execQuery").click(function() {
let query = $("#query").val();
executeSql(myDBInstance, query);
listTables(myDBInstance);
});
});
</script>
</head>
<body>
<div>
<h1>Inserta una sentencia SQL (versión <span id="version"></span>)</h1>
<p>Haciendo clic en estos botones podrás insertar algunos ejemplos de sentencias SQL.</p>
<button id="insertSelect">Inserta un <strong><em>select</em></strong>.</button>
<button id="insertInsert">Inserta un <strong><em>insert into</em></strong>.</button>
<button id="insertCreateTable">Inserta un <strong><em>create table</em></strong>.</button>
<button id="insertDropTable">Inserta un <strong><em>drop table</em></strong>.</button>
</div>
<div id="queryArea">
<h1>Consulta</h1>
<label for="query">Introduce aquí una sentencia SQL:</label><br/>
<textarea id="query" cols="100" rows="5"></textarea><br/>
<button id="execQuery">Ejecutar SQL</button>
</div>
<div>
<h1>Resultado de la sentencia SQL</h1>
<div id="sqlResult"></div>
</div>
<div>
<h1>Tablas de la base de datos</h1>
<p>Estas son las tablas de tu base de datos. Estas tablas no se borran aunque recargues la página.</p>
<div id="listTables"></div>
</div>
<div>
<h1>Últimas sentencias SQL ejecutadas</h1>
<p>Puedes hacer clic sobre una sentencia SQL previamente ejecutada para ejecutarla de nuevo.</p>
<p>Cada vez que recargues esta página, las sentencias SQL desaparecerán.</p>
<ol id="lastSqlSentences"></ol>
</div>
</body>
</html>