7 references to Int16
Microsoft.ML.Data (2)
DataLoadSave\Database\DbExtensions.cs (2)
42case DbType.Int16: 87return DbType.Int16;
System.Data.Odbc (3)
System\Data\Odbc\Odbc32.cs (3)
785private 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); 870case DbType.Int16: return s_smallInt; 988DbType.Int16 => s_int, // upgrade to 32 bit
System.Data.OleDb (2)
OleDb_Enum.cs (2)
144private 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 327DbType.Int16 => D_SmallInt,