We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c73e8c0 + a0b255b commit a8e6781Copy full SHA for a8e6781
WorldBirdNamesParser/WorldBirdNamesParser/Program.cs
@@ -128,6 +128,10 @@ void ProcessLocale(string file)
128
int rowCounter = 0;
129
Specie specie = null;
130
131
+ // Output UTF-8 encoding and aves class.
132
+ Console.WriteLine("SET NAMES utf8;");
133
+ Console.WriteLine("INSERT INTO specie_classes (`scientific`) VALUES ('Aves');");
134
+
135
// Get sheet range and loop through rows.
136
Range range = workbook.Sheets[1].UsedRange;
137
for (int row = 4; row <= range.Rows.Count; row++)
0 commit comments