7 references to Int16
Microsoft.ML.Data (2)
DataLoadSave\Database\DbExtensions.cs (2)
42
case DbType.
Int16
:
87
return DbType.
Int16
;
System.Data.Odbc (3)
System\Data\Odbc\Odbc32.cs (3)
785
private static readonly TypeMap s_smallInt = new TypeMap(OdbcType.SmallInt, DbType.
Int16
, typeof(short), ODBC32.SQL_TYPE.SMALLINT, ODBC32.SQL_C.SSHORT, ODBC32.SQL_C.SSHORT, 2, 5, true);
870
case DbType.
Int16
: return s_smallInt;
988
DbType.
Int16
=> s_int, // upgrade to 32 bit
System.Data.OleDb (2)
OleDb_Enum.cs (2)
144
private static readonly NativeDBType D_SmallInt = new NativeDBType(5, 2, true, false, OleDbType.SmallInt, NativeDBType.I2, S_I2, typeof(short), NativeDBType.I2, DbType.
Int16
); // 14 - integer2
327
DbType.
Int16
=> D_SmallInt,