all the tables are created (I suggest using 'Db browser for sqlite') to check

This commit is contained in:
2023-05-16 15:44:40 +02:00
parent 511f5d98e4
commit ac65c7b4f3

View File

@@ -52,7 +52,7 @@ namespace Test_Merge
DriverID INTEGER NOT NULL,
Tyre VARCHAR,
PRIMARY KEY (Lap,DriverID));";
using (var command = new SQLiteCommand(createDriversTableQuery, connection))
using (var command = new SQLiteCommand(createPitstopTableQuery, connection))
{
command.ExecuteNonQuery();
}