J'ai un tinyint
colonne dans la base de données et je voudrais le convertir en Int32
d'un SqlDataReader
.
Comment dois-je faire?
Edit #1
J'ai récemment eu à faire.
int a = dataReader.GetByte(dr.GetOrdinal("ColumnName"));
#En Plus de Répondre
Type de Données SQL Server Mappages
bigint - GetInt64
binary - GetBytes
int - GetInt32
money - GetDecimal
rowversion - GetBytes
smallint - GetInt16
tinyint - GetByte
uniqueidentifier - GetGuid
...
Pour plus d'informations, visitez - Type de Données SQL Server Mappages