10 references to String
Microsoft.ML.Data (2)
DataLoadSave\Database\DbExtensions.cs (2)
21
case DbType.
String
:
127
return DbType.
String
;
System.Data.Odbc (3)
System\Data\Odbc\Odbc32.cs (3)
779
internal static readonly TypeMap _NText = new TypeMap(OdbcType.NText, DbType.
String
, typeof(string), ODBC32.SQL_TYPE.WLONGVARCHAR, ODBC32.SQL_C.WCHAR, ODBC32.SQL_C.WCHAR, -1, -1, false);
781
internal static readonly TypeMap _NVarChar = new TypeMap(OdbcType.NVarChar, DbType.
String
, typeof(string), ODBC32.SQL_TYPE.WVARCHAR, ODBC32.SQL_C.WCHAR, ODBC32.SQL_C.WCHAR, -1, -1, false);
874
case DbType.
String
: return _NVarChar;
System.Data.OleDb (5)
OleDb_Enum.cs (5)
132
private static readonly NativeDBType D_BSTR = new NativeDBType(0xff, IntPtr.Size, false, false, OleDbType.BSTR, NativeDBType.BSTR, S_BSTR, typeof(string), NativeDBType.BSTR, DbType.
String
); // 2 - integer4 (pointer)
164
private static readonly NativeDBType D_VarWChar = new NativeDBType(0xff, -1, false, false, OleDbType.VarWChar, NativeDBType.WSTR, S_WVARCHAR, typeof(string), NativeDBType.WSTR, DbType.
String
); // 34 - (unicode pointer)
165
private static readonly NativeDBType D_LongVarWChar = new NativeDBType(0xff, -1, false, true, OleDbType.LongVarWChar, NativeDBType.WSTR, S_WLONGVARCHAR, typeof(string), NativeDBType.WSTR, DbType.
String
); // 35 - (unicode pointer)
168
private static readonly NativeDBType D_Xml = new NativeDBType(0xff, -1, false, false, OleDbType.VarWChar, NativeDBType.XML, S_XML, typeof(string), NativeDBType.WSTR, DbType.
String
); // 38 - (unicode pointer)
333
DbType.
String
=> D_VarWChar,