Come posso determinare il tipo di colonna rappresentato dalla struttura MySqlDateTime di MySql .Net Connector?

StackOverflow https://stackoverflow.com/questions/1230203

  •  22-07-2019
  •  | 
  •  

Domanda

DataColumn.DataType restituisce FullName = " MySql.Data.Types.MySqlDateTime " indipendentemente dal tipo di colonna che rappresenta, se è DATE, TIME o DATETIME.

Chiaramente posso interrogare la tabella information_schema.columns, anche se spero che la libreria del connettore memorizzi questo dettaglio da qualche parte che non riesco proprio a trovare nella documentazione.

È stato utile?

Soluzione

Da una rapida occhiata al codice sorgente di MySQLClient, penso che la tua scelta migliore sia IDataReader.GetDataTypeName (). Questo è il nome del DBMS sottostante per il tipo di dati di una colonna. Per (un numero limitato di) ulteriori informazioni, consultare MSDN documenti e il documenti MySQL corrispondenti per questa proprietà.

Ecco la fonte da MySqlDateTime.cs per questa proprietà, che sembra promettente:

string IMySqlValue.MySqlTypeName
{
 get
 {
  switch (type)
  {
   case MySqlDbType.Date: return "DATE";
   case MySqlDbType.Newdate: return "NEWDATE";
   case MySqlDbType.Timestamp: return "TIMESTAMP";
  }
  return "DATETIME";
 }
}

Ecco un'altra funzione di utilità di cui potresti voler prendere in prestito il codice da MetaData.cs:

public static MySqlDbType NameToType(string typeName, bool unsigned,
  bool realAsFloat, MySqlConnection connection)
{
 switch (typeName.ToUpper(CultureInfo.InvariantCulture))
 {
  case "CHAR": return MySqlDbType.String;
  case "VARCHAR": return MySqlDbType.VarChar;
  case "DATE": return MySqlDbType.Date;
  case "DATETIME": return MySqlDbType.DateTime;
  case "NUMERIC":
  case "DECIMAL":
  case "DEC":
  case "FIXED":
   if (connection.driver.Version.isAtLeast(5, 0, 3))
    return MySqlDbType.NewDecimal;
   else
    return MySqlDbType.Decimal;
  case "YEAR":
   return MySqlDbType.Year;
  case "TIME":
   return MySqlDbType.Time;
  case "TIMESTAMP":
   return MySqlDbType.Timestamp;
  case "SET": return MySqlDbType.Set;
  case "ENUM": return MySqlDbType.Enum;
  case "BIT": return MySqlDbType.Bit;

  case "TINYINT":
            return unsigned ? MySqlDbType.UByte : MySqlDbType.Byte;
  case "BOOL":
  case "BOOLEAN":
   return MySqlDbType.Byte;
  case "SMALLINT":
   return unsigned ? MySqlDbType.UInt16 : MySqlDbType.Int16;
  case "MEDIUMINT":
   return unsigned ? MySqlDbType.UInt24 : MySqlDbType.Int24;
  case "INT":
  case "INTEGER":
   return unsigned ? MySqlDbType.UInt32 : MySqlDbType.Int32;
  case "SERIAL":
   return MySqlDbType.UInt64;
  case "BIGINT":
   return unsigned ? MySqlDbType.UInt64 : MySqlDbType.Int64;
  case "FLOAT": return MySqlDbType.Float;
  case "DOUBLE": return MySqlDbType.Double;
  case "REAL": return
    realAsFloat ? MySqlDbType.Float : MySqlDbType.Double;
        case "TEXT":
            return MySqlDbType.Text;
        case "BLOB":
   return MySqlDbType.Blob;
  case "LONGBLOB":
            return MySqlDbType.LongBlob;
        case "LONGTEXT":
            return MySqlDbType.LongText;
  case "MEDIUMBLOB":
            return MySqlDbType.MediumBlob;
        case "MEDIUMTEXT":
            return MySqlDbType.MediumText;
  case "TINYBLOB":
            return MySqlDbType.TinyBlob;
  case "TINYTEXT":
   return MySqlDbType.TinyText;
        case "BINARY":
            return MySqlDbType.Binary;
        case "VARBINARY":
            return MySqlDbType.VarBinary;
 }
 throw new MySqlException("Unhandled type encountered");
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top