Asignación de tipos de ADO a tipos de .NET Framework
Los valores del objeto Recordset o Record de ADO se convierten en tipos de .NET Framework para su almacenamiento en el DataSet. En la tabla siguiente se muestra la asignación de tipos de ADO a tipos de .NET Framework.
Tipo de ADO | Tipo de .NET Framework |
---|---|
adEmpty | null |
adBoolean | Int16 |
adTinyInt | SByte |
adSmallInt | Int16 |
adInteger | Int32 |
adBigInt | Int64 |
adUnsignedTinyInt | promocionado a Int16 |
adUnsignedSmallInt | promocionado a Int32 |
adUnsignedInt | promocionado a Int64 |
adUnsignedBigInt | promocionado a Decimal |
adSingle | Single |
adDouble | Double |
adCurrency | Decimal |
adDecimal | Decimal |
adNumeric | Decimal |
adDate | DateTime |
adDBDate | DateTime |
adDBTime | DateTime |
adDBTimeStamp | DateTime |
adFileTime | DateTime |
adGUID | Guid |
adError | ExternalException |
adIUnknown | object |
adIDispatch | object |
adVariant | object |
adPropVariant | object |
adBinary | byte[] |
adChar | string |
adWChar | string |
adBSTR | string |
adChapter | no se admite |
adUserDefined | no se admite |
adVarNumeric | no se admite |
Vea también
Acceso a un conjunto de registros o a un registro de ADO desde ADO.NET