15 references to STR
System.Data.OleDb (15)
ColumnBinding.cs (6)
382case NativeDBType.STR: 391case (NativeDBType.BYREF | NativeDBType.STR): 415case NativeDBType.STR: 418case (NativeDBType.BYREF | NativeDBType.STR): 590case NativeDBType.STR: 602case (NativeDBType.BYREF | NativeDBType.STR):
OleDb_Enum.cs (4)
133private static readonly NativeDBType D_Char = new NativeDBType(0xff, -1, true, false, OleDbType.Char, NativeDBType.STR, S_CHAR, typeof(string), NativeDBType.WSTR/*STR*/, DbType.AnsiStringFixedLength); // 3 - (ansi pointer) 150private static readonly NativeDBType D_LongVarChar = new NativeDBType(0xff, -1, false, true, OleDbType.LongVarChar, NativeDBType.STR, S_LONGVARCHAR, typeof(string), NativeDBType.WSTR/*STR*/, DbType.AnsiString); // 20 - (ansi pointer) 160private static readonly NativeDBType D_VarChar = new NativeDBType(0xff, -1, false, false, OleDbType.VarChar, NativeDBType.STR, S_VARCHAR, typeof(string), NativeDBType.WSTR/*STR*/, DbType.AnsiString); // 30 - (ansi pointer) 394case STR:
OleDbDataReader.cs (1)
1600Debug.Assert(NativeDBType.STR != getType, "Should have bound as WSTR");
OleDbParameter.cs (4)
342if (NativeDBType.STR == dbtype.dbType) 384Debug.Assert(NativeDBType.STR != dbtype.wType, "should have ANSI binding, describing is okay"); 390if (NativeDBType.STR == dbtype.dbType) 412Debug.Assert(NativeDBType.STR != dbtype.wType, "should have ANSI binding, describing is okay");