Como posso determinar o tipo de coluna representado pela estrutura MySqlDateTime um .Net Conector MySql?

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

  •  22-07-2019
  •  | 
  •  

Pergunta

DataColumn.DataType retorna FullName = "MySql.Data.Types.MySqlDateTime" independentemente do tipo da coluna que representa, se ele é ou DATA, HORA, ou DATETIME.

É claro que eu posso consultar a tabela de INFORMATION_SCHEMA.COLUMNS, embora eu estou esperando que as lojas da biblioteca conector esse detalhe em algum lugar que eu simplesmente não consigo encontrar na documentação.

Foi útil?

Solução

A partir de um rápido olhar para o código-fonte mysqlclient, eu acho que a melhor opção é IDataReader.GetDataTypeName (). Este é o nome do DBMS subjacente para o tipo de dados de uma coluna. Para (a quantidade limitada de) mais informações, consulte o MSDN docs e o correspondente docs MySQL para esta propriedade.

Aqui está a fonte da MySqlDateTime.cs para essa propriedade, que parece promissor:

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

Aqui está outra função de utilidade você pode querer emprestar o código, de 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");
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top