-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
sqlite-anpassung.js
35 lines (29 loc) · 1007 Bytes
/
sqlite-anpassung.js
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
const sqlite3 = require('sqlite3').verbose();
const dbPath = './datenbank.sqlite';
const db = new sqlite3.Database(dbPath);
function renameTables() {
db.serialize(() => {
db.all("SELECT name FROM sqlite_master WHERE type='table'", (err, tables) => {
if (err) {
console.error('Fehler beim Abrufen der Tabellennamen:', err.message);
return;
}
tables.forEach(table => {
const oldName = table.name;
const newName = oldName.replace(/^public\./, '');
if (newName !== oldName) {
const renameQuery = `ALTER TABLE "${oldName}" RENAME TO "${newName}"`;
db.run(renameQuery, err => {
if (err) {
console.error(`Fehler beim Umbenennen der Tabelle ${oldName}:`, err.message);
} else {
console.log(`Tabelle ${oldName} erfolgreich in ${newName} umbenannt`);
}
});
}
});
});
});
}
renameTables();
console.log('Die Datenbank ist nun bereit!')