Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
242 changed files with 10820 additions and 99 deletions
Showing only changes of commit 332e5a013b - Show all commits

View File

@ -90,10 +90,11 @@ public class SetupController(
{ {
try try
{ {
using var connection = new TConnection(); using (var connection = new TConnection())
connection.ConnectionString = connectionString; {
connection.Open(); connection.ConnectionString = connectionString;
connection.Close(); connection.Open();
connection.Close();
if (connection is SqliteConnection) if (connection is SqliteConnection)
SqliteConnection.ClearAllPools(); SqliteConnection.ClearAllPools();