mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
disable field not in use
This commit is contained in:
parent
bdd1292039
commit
00e916dc7c
1 changed files with 3 additions and 8 deletions
|
|
@ -3,7 +3,7 @@ use std::sync::Arc;
|
|||
|
||||
pub struct Table {
|
||||
pub id: i64,
|
||||
pub time: i64,
|
||||
// pub time: i64,
|
||||
}
|
||||
|
||||
pub struct Database {
|
||||
|
|
@ -30,14 +30,9 @@ impl Database {
|
|||
}
|
||||
|
||||
pub fn records(&self) -> Result<Vec<Table>, Error> {
|
||||
let mut statement = self.connection.prepare("SELECT `id`, `time` FROM `app`")?;
|
||||
let mut statement = self.connection.prepare("SELECT `id` FROM `app`")?;
|
||||
|
||||
let result = statement.query_map([], |row| {
|
||||
Ok(Table {
|
||||
id: row.get(0)?,
|
||||
time: row.get(1)?,
|
||||
})
|
||||
})?;
|
||||
let result = statement.query_map([], |row| Ok(Table { id: row.get(0)? }))?;
|
||||
|
||||
let mut records = Vec::new();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue