-
Notifications
You must be signed in to change notification settings - Fork 4
/
App.tsx
455 lines (417 loc) · 11.6 KB
/
App.tsx
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
import * as React from 'react';
import { useState, useEffect, useCallback } from 'react';
import {
StyleSheet,
Text,
View,
SafeAreaView,
TouchableOpacity,
FlatList,
} from 'react-native';
import WebSQLite, {
WebsqlDatabase,
SQLTransaction,
SQLResultSet,
SQLError,
} from 'react-native-quick-websql';
import { QuickSQLite } from 'react-native-quick-sqlite';
function databaseName(baseName: string) {
return baseName + '.' + Math.floor(Math.random() * 100000);
}
interface LogEntry {
msg: string;
key: string;
}
export default function App() {
const [progress, setProgress] = useState<LogEntry[]>([]);
const addLog = useCallback((msg: string) => {
console.log(msg);
setProgress((prev) => [
...prev,
{ msg, key: Math.floor(Math.random() * 100000).toString() },
]);
}, []);
useEffect(() => {
addLog(
typeof QuickSQLite === 'object'
? 'quick-sqlite module loaded successfully'
: 'Error: quick-sqlite module is not loaded'
);
}, []);
const errorCB = useCallback((err: SQLError): void => {
console.error('error:', err);
addLog('Error: ' + (err.message || err));
}, []);
const errorStatementCB = useCallback(
(_tx: SQLTransaction, err: SQLError): boolean => {
errorCB(err);
return false;
},
[]
);
const successCB = useCallback(() => {
console.log('SQL executed ...');
}, []);
const populateDatabase = useCallback((db: WebsqlDatabase) => {
return new Promise<void>((resolve) => {
addLog('Database integrity check');
const prepareDB = () => {
addLog('Preparing DB..');
db.transaction(populateDB, errorCB, () => {
addLog('Database populated ... executing query ...');
db.transaction(queryEmployees, errorCB, () => {
console.log('Transaction is now finished');
addLog('Processing completed.');
db.transaction(cleanupTables, errorCB, () => {
// closeDatabase(db)
resolve();
});
});
});
};
db.transaction((txn) => {
txn.executeSql(
'select sqlite_version()',
[],
(_, resultSet) => {
addLog(JSON.stringify(resultSet.rows?.item(0)));
prepareDB();
},
(_, error) => {
console.log('received version error:', error);
addLog('Database not yet ready ... populating data');
prepareDB();
return false;
}
);
});
});
}, []);
const populateDB = (tx: SQLTransaction) => {
addLog('Executing DROP stmts');
tx.executeSql('DROP TABLE IF EXISTS Employees;');
tx.executeSql('DROP TABLE IF EXISTS Offices;');
tx.executeSql('DROP TABLE IF EXISTS Departments;');
addLog('Executing CREATE stmts');
tx.executeSql(
'CREATE TABLE IF NOT EXISTS Version( ' +
'version_id INTEGER PRIMARY KEY NOT NULL); ',
[],
successCB,
errorStatementCB
);
tx.executeSql(
'CREATE TABLE IF NOT EXISTS Departments( ' +
'department_id INTEGER PRIMARY KEY NOT NULL, ' +
'name VARCHAR(30) ); ',
[],
successCB,
errorStatementCB
);
tx.executeSql(
'CREATE TABLE IF NOT EXISTS Offices( ' +
'office_id INTEGER PRIMARY KEY NOT NULL, ' +
'name VARCHAR(20), ' +
'longtitude FLOAT, ' +
'latitude FLOAT ) ; ',
[],
successCB,
errorStatementCB
);
tx.executeSql(
'CREATE TABLE IF NOT EXISTS Employees( ' +
'employe_id INTEGER PRIMARY KEY NOT NULL, ' +
'name VARCHAR(55), ' +
'office INTEGER, ' +
'department INTEGER, ' +
'FOREIGN KEY ( office ) REFERENCES Offices ( office_id ) ' +
'FOREIGN KEY ( department ) REFERENCES Departments ( department_id ));',
[]
);
addLog('Executing INSERT stmts');
tx.executeSql(
'INSERT INTO Departments (name) VALUES ("Client Services");',
[]
);
tx.executeSql(
'INSERT INTO Departments (name) VALUES ("Investor Services");',
[]
);
tx.executeSql('INSERT INTO Departments (name) VALUES ("Shipping");', []);
tx.executeSql(
'INSERT INTO Departments (name) VALUES ("Direct Sales");',
[]
);
tx.executeSql(
'INSERT INTO Offices (name, longtitude, latitude) VALUES ("Denver", 59.8, 34.);',
[]
);
tx.executeSql(
'INSERT INTO Offices (name, longtitude, latitude) VALUES ("Warsaw", 15.7, 54.);',
[]
);
tx.executeSql(
'INSERT INTO Offices (name, longtitude, latitude) VALUES ("Berlin", 35.3, 12.);',
[]
);
tx.executeSql(
'INSERT INTO Offices (name, longtitude, latitude) VALUES ("Paris", 10.7, 14.);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Sylvester Stallone", 2, 4);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Elvis Presley", 2, 4);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Leslie Nelson", 3, 4);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Fidel Castro", 3, 3);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Bill Clinton", 1, 3);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Margaret Thatcher", 1, 3);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Donald Trump", 1, 3);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES (?, 1, 3);',
['Zero\0Null']
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Dr DRE", 2, 2);',
[]
);
tx.executeSql(
'INSERT INTO Employees (name, office, department) VALUES ("Samantha Fox", 2, 1);',
[]
);
console.log('all config SQL done');
};
const queryEmployees = (tx: SQLTransaction) => {
console.log('Executing sql...');
tx.executeSql(
'SELECT a.name, b.name as deptName FROM Employees a, Departments b WHERE a.department = b.department_id and a.department=?',
[3],
queryEmployeesSuccess,
errorStatementCB
);
};
const queryEmployeesSuccess = (
_tx: SQLTransaction,
results: SQLResultSet
) => {
console.log('results:', JSON.stringify(results, null, 4));
addLog('Query completed');
var len = results.rows?.length || 0;
for (let i = 0; i < len; i++) {
let row = results.rows?.item(i);
addLog(
`Empl Name: ${JSON.stringify(row.name)}, Dept Name: ${JSON.stringify(
row.deptName
)}`
);
}
};
const cleanupTables = (tx: SQLTransaction) => {
addLog('Executing DROP stmts');
tx.executeSql('DROP TABLE IF EXISTS Employees;');
tx.executeSql('DROP TABLE IF EXISTS Offices;');
tx.executeSql('DROP TABLE IF EXISTS Departments;');
};
const openDatabase = useCallback(async () => {
return await new Promise<WebsqlDatabase>((resolve) =>
WebSQLite.openDatabase(
databaseName('mydb'),
undefined,
undefined,
undefined,
resolve
)
);
}, []);
const loadAndQueryDB = useCallback(async () => {
addLog('Opening database ...');
const db = await openDatabase();
addLog('Database OPEN');
await populateDatabase(db);
}, [openDatabase]);
/*
* PRAGMA
*/
const pragmaTests = async () => {
addLog('Open separate DB and run PRAGMA tests');
const db = await openDatabase();
await queryingPragma(db, false);
await assigningPragma(db);
await queryingPragma(db, true);
await buildPragmaSchema(db);
await assigningParenthesisPragma(db);
addLog('Done!');
};
const assigningPragma = (db: WebsqlDatabase) => {
return new Promise<void>((resolve) => {
let sql = 'PRAGMA journal_mode = WAL';
db._db.exec([{ sql: sql, args: [] }], false, (_, result) => {
const row = result?.[0]?.rows?.[0];
let journal_mode = row?.journal_mode;
if (journal_mode == 'wal') {
addLog('✅ ' + sql);
} else {
addLog('❌ ' + sql);
console.log(result, journal_mode);
}
resolve();
});
});
};
const queryingPragma = (db: WebsqlDatabase, isWal: boolean) => {
return new Promise<void>((resolve) => {
let sql = 'PRAGMA journal_mode';
db._db.exec([{ sql: sql, args: [] }], false, (_, result) => {
const row = result?.[0]?.rows?.[0];
const journal_mode = row?.journal_mode;
// Default journal_modes differ on Android & iOS
if (
(!isWal && journal_mode != 'wal') ||
(isWal && journal_mode == 'wal')
) {
addLog('✅ ' + sql);
} else {
addLog('❌ ' + sql);
console.log(result, journal_mode);
}
resolve();
});
});
};
const buildPragmaSchema = (db: WebsqlDatabase) => {
return new Promise<void>((resolve) => {
db._db.exec(
[
{
sql: 'CREATE TABLE Version(version_id INTEGER PRIMARY KEY NOT NULL);',
args: [],
},
],
false,
(_, _result) => {
resolve();
}
);
});
};
const assigningParenthesisPragma = (db: WebsqlDatabase) => {
return new Promise<void>((resolve) => {
let sql = 'PRAGMA main.wal_checkpoint(FULL)';
db._db.exec([{ sql: sql, args: [] }], false, (_, result) => {
const row = result?.[0]?.rows?.[0];
if (row.busy == 0 && row.checkpointed != -1 && row.log != -1) {
addLog('✅ ' + sql);
} else {
addLog('❌ ' + sql);
console.log(result, row);
}
resolve();
});
});
};
const runDemo = useCallback(async () => {
addLog('Starting SQLite Callback Demo');
await loadAndQueryDB();
await pragmaTests();
}, []);
const renderProgressEntry = useCallback((entry: { item: LogEntry }) => {
const { item } = entry;
return (
<View style={listStyles.li}>
<View>
<Text style={listStyles.liText}>{item.msg}</Text>
</View>
</View>
);
}, []);
return (
<SafeAreaView style={styles.mainContainer}>
<TouchableOpacity style={styles.toolbar} onPress={() => runDemo()}>
<Text style={styles.toolbarButton}>Run Demo</Text>
</TouchableOpacity>
<FlatList
data={progress}
renderItem={renderProgressEntry}
style={listStyles.liContainer}
/>
</SafeAreaView>
);
}
var listStyles = StyleSheet.create({
li: {
borderBottomColor: '#c8c7cc',
borderBottomWidth: 0.5,
paddingTop: 15,
paddingRight: 15,
paddingBottom: 15,
},
liContainer: {
backgroundColor: '#fff',
flex: 1,
paddingLeft: 15,
},
liIndent: {
flex: 1,
},
liText: {
color: '#333',
fontSize: 17,
fontWeight: '400',
marginBottom: -3.5,
marginTop: -3.5,
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
toolbar: {
backgroundColor: '#51c04d',
flexDirection: 'row',
height: 44,
justifyContent: 'center',
alignItems: 'center',
},
toolbarButton: {
color: 'white',
textAlign: 'center',
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
mainContainer: {
flex: 1,
},
});