SQLiteConnection connection = new SQLiteConnection($"Data
Source={Path}; Version=3;");
connection.Open();
SQLiteCommand com = new SQLiteCommand(command, connection);
SQLiteDataReader reader = com.ExecuteReader();
while(reader.Read())
{
}
reader.GetInt32(0) - получить из первого столбца число
reader.GetString(0) - получить из первого столбца строку