/// <summary>
 /// Loads Scale Gazetteer CSV data file into a new table in SQL Server, creating 2 related lookup tables also 
 /// for the county codes and feature codes
 /// </summary>
 /// <param name="options">options</param>
 /// <returns>number of rows loaded</returns>
 public int LoadData(ScaleGazetteerOptions options)
 {
     return LoadData(options.ServerName, options.DBName, options.SchemaName, options.TableName, options.DataFileName, options.CountyLookupTableName, options.FeatureLookupTableName);
 }
 /// <summary>
 /// Loads Scale Gazetteer CSV data file into a new table in SQL Server, creating 2 related lookup tables also
 /// for the county codes and feature codes
 /// </summary>
 /// <param name="options">options</param>
 /// <returns>number of rows loaded</returns>
 public int LoadData(ScaleGazetteerOptions options)
 {
     return(LoadData(options.ServerName, options.DBName, options.SchemaName, options.TableName, options.DataFileName, options.CountyLookupTableName, options.FeatureLookupTableName));
 }