Split software arch desc for easier manintenance. Many fixes related to next video playing and remote playback
🏗️ Build and Test JellyTau / Run Tests (push) Failing after 12s
🏗️ Build and Test JellyTau / Build Android APK (push) Has been skipped
Traceability Validation / Check Requirement Traces (push) Failing after 1s

This commit is contained in:
2026-03-01 19:47:46 +01:00
parent 3a9c126dfe
commit 09780103a7
45 changed files with 5663 additions and 3332 deletions
+7
View File
@@ -100,6 +100,13 @@ impl<'a> Transaction<'a> {
pub fn execute(&mut self, query: Query) -> DbResult<usize> {
execute_query(self.conn, query)
}
pub fn query_many<T, F>(&self, query: Query, mapper: F) -> DbResult<Vec<T>>
where
F: Fn(&Row) -> SqliteResult<T>,
{
query_many(self.conn, query, mapper)
}
}
/// Rusqlite-based database service implementation