mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2024-11-23 01:06:17 +00:00
First database schema update.
This commit is contained in:
parent
83664b8fc0
commit
3b01f47f38
@ -90,6 +90,13 @@ class Database {
|
|||||||
stmt.executeUpdate("INSERT INTO database_versions (version) VALUES (1)");
|
stmt.executeUpdate("INSERT INTO database_versions (version) VALUES (1)");
|
||||||
version = 1;
|
version = 1;
|
||||||
}
|
}
|
||||||
|
if (version==1) {
|
||||||
|
System.out.println(" Updating to version 2...");
|
||||||
|
stmt.executeUpdate("ALTER TABLE people RENAME TO 'users'");
|
||||||
|
stmt.executeUpdate("ALTER TABLE users ADD COLUMN phone TEXT");
|
||||||
|
stmt.executeUpdate("INSERT INTO database_versions (version) VALUES (2)");
|
||||||
|
version = 2;
|
||||||
|
}
|
||||||
|
|
||||||
System.out.println("Database is ready.");
|
System.out.println("Database is ready.");
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
@ -271,25 +278,17 @@ class Database {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void saveUsers(TLVector<TLAbsUser> all) {
|
public void saveUsers(TLVector<TLAbsUser> all) {
|
||||||
/*
|
|
||||||
("
|
|
||||||
+ "id INTEGER PRIMARY KEY ASC, "
|
|
||||||
+ "first_name TEXT, "
|
|
||||||
+ "last_name TEXT, "
|
|
||||||
+ "username TEXT, "
|
|
||||||
+ "type TEXT)
|
|
||||||
*/
|
|
||||||
try {
|
try {
|
||||||
PreparedStatement ps_insert_or_replace = conn.prepareStatement(
|
PreparedStatement ps_insert_or_replace = conn.prepareStatement(
|
||||||
"INSERT OR REPLACE INTO people " +
|
"INSERT OR REPLACE INTO users " +
|
||||||
"(id, first_name, last_name, username, type) " +
|
"(id, first_name, last_name, username, type, phone) " +
|
||||||
"VALUES " +
|
"VALUES " +
|
||||||
"(?, ?, ?, ?, ?)");
|
"(?, ?, ?, ?, ?, ?)");
|
||||||
PreparedStatement ps_insert_or_ignore = conn.prepareStatement(
|
PreparedStatement ps_insert_or_ignore = conn.prepareStatement(
|
||||||
"INSERT OR IGNORE INTO people " +
|
"INSERT OR IGNORE INTO users " +
|
||||||
"(id, first_name, last_name, username, type) " +
|
"(id, first_name, last_name, username, type, phone) " +
|
||||||
"VALUES " +
|
"VALUES " +
|
||||||
"(?, ?, ?, ?, ?)");
|
"(?, ?, ?, ?, ?, ?)");
|
||||||
for (TLAbsUser abs : all) {
|
for (TLAbsUser abs : all) {
|
||||||
if (abs instanceof TLUser) {
|
if (abs instanceof TLUser) {
|
||||||
TLUser user = (TLUser)abs;
|
TLUser user = (TLUser)abs;
|
||||||
@ -298,6 +297,7 @@ class Database {
|
|||||||
ps_insert_or_replace.setString(3, user.getLastName());
|
ps_insert_or_replace.setString(3, user.getLastName());
|
||||||
ps_insert_or_replace.setString(4, user.getUsername());
|
ps_insert_or_replace.setString(4, user.getUsername());
|
||||||
ps_insert_or_replace.setString(5, "user");
|
ps_insert_or_replace.setString(5, "user");
|
||||||
|
ps_insert_or_replace.setString(6, user.getPhone());
|
||||||
ps_insert_or_replace.addBatch();
|
ps_insert_or_replace.addBatch();
|
||||||
} else if (abs instanceof TLUserEmpty) {
|
} else if (abs instanceof TLUserEmpty) {
|
||||||
ps_insert_or_ignore.setInt(1, abs.getId());
|
ps_insert_or_ignore.setInt(1, abs.getId());
|
||||||
@ -305,6 +305,7 @@ class Database {
|
|||||||
ps_insert_or_ignore.setNull(3, Types.VARCHAR);
|
ps_insert_or_ignore.setNull(3, Types.VARCHAR);
|
||||||
ps_insert_or_ignore.setNull(4, Types.VARCHAR);
|
ps_insert_or_ignore.setNull(4, Types.VARCHAR);
|
||||||
ps_insert_or_ignore.setString(5, "empty_user");
|
ps_insert_or_ignore.setString(5, "empty_user");
|
||||||
|
ps_insert_or_ignore.setNull(6, Types.VARCHAR);
|
||||||
ps_insert_or_ignore.addBatch();
|
ps_insert_or_ignore.addBatch();
|
||||||
} else {
|
} else {
|
||||||
throw new RuntimeException("Unexpected " + abs.getClass().getName());
|
throw new RuntimeException("Unexpected " + abs.getClass().getName());
|
||||||
|
Loading…
Reference in New Issue
Block a user