11 references to Int32
Microsoft.ML.Data (2)
DataLoadSave\Database\DbExtensions.cs (2)
44case DbType.Int32: 97return DbType.Int32;
Microsoft.ML.Tests (1)
DatabaseLoaderTests.cs (1)
56new DatabaseLoader.Column() { Name = "Label", Type = DbType.Int32 },
System.Data.Common (2)
System\Data\Common\DBCommandBuilder.cs (1)
1153p.DbType = DbType.Int32;
System\Data\Common\DbDataAdapter.cs (1)
775Debug.Assert(DbType.Int32 == parameter.DbType, "unexpected DbType");
System.Data.Odbc (3)
System\Data\Odbc\Odbc32.cs (3)
777private static readonly TypeMap s_int = new TypeMap(OdbcType.Int, DbType.Int32, typeof(int), ODBC32.SQL_TYPE.INTEGER, ODBC32.SQL_C.SLONG, ODBC32.SQL_C.SLONG, 4, 10, true); 871case DbType.Int32: return s_int; 987DbType.Int32 => s_bigInt, // upgrade to 64 bit
System.Data.OleDb (3)
OleDb_Enum.cs (3)
140private static readonly NativeDBType D_Error = new NativeDBType(0xff, 4, true, false, OleDbType.Error, NativeDBType.ERROR, S_ERROR, typeof(int), NativeDBType.ERROR, DbType.Int32); // 10 - integer4 145private static readonly NativeDBType D_Integer = new NativeDBType(10, 4, true, false, OleDbType.Integer, NativeDBType.I4, S_I4, typeof(int), NativeDBType.I4, DbType.Int32); // 15 - integer4 328DbType.Int32 => D_Integer,