Export: Implement exporting and importing of sqlite3 and sql files
All checks were successful
Test / Run tests (push) Successful in 2m15s

This commit is contained in:
2025-09-15 10:53:27 +02:00
parent 4b8cd2a0d7
commit f02598760f
6 changed files with 253 additions and 31 deletions

View File

@@ -38,7 +38,7 @@ namespace Elwig.Windows {
IList<DbColumn> header;
using (var cnx = await AppDbContext.ConnectAsync()) {
var cmd = cnx.CreateCommand();
using var cmd = cnx.CreateCommand();
cmd.CommandText = sqlQuery;
using var reader = await cmd.ExecuteReaderAsync();
header = await reader.GetColumnSchemaAsync();