2 instantiations of OdbcDescriptorHandle
System.Data.Odbc (2)
System\Data\Odbc\OdbcCommand.cs (1)
1141_hdesc = hdesc = new OdbcDescriptorHandle(_stmt!, attribute);
System\Data\Odbc\OdbcDataReader.cs (1)
1653using (OdbcDescriptorHandle hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC))
16 references to OdbcDescriptorHandle
System.Data.Odbc (16)
_generated\0\LibraryImports.g.cs (6)
638internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLGetDescFieldW(global::System.Data.Odbc.OdbcDescriptorHandle StatementHandle, short RecNumber, global::System.Data.Odbc.ODBC32.SQL_DESC FieldIdentifier, global::System.Data.Odbc.CNativeBuffer ValuePointer, int BufferLength, out int StringLength) 646global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcDescriptorHandle>.ManagedToUnmanagedIn __StatementHandle_native__marshaller = new(); 1297internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLSetDescFieldW(global::System.Data.Odbc.OdbcDescriptorHandle StatementHandle, short ColumnNumber, global::System.Data.Odbc.ODBC32.SQL_DESC FieldIdentifier, global::System.Runtime.InteropServices.HandleRef CharacterAttribute, int BufferLength) 1304global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcDescriptorHandle>.ManagedToUnmanagedIn __StatementHandle_native__marshaller = new(); 1340internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLSetDescFieldW(global::System.Data.Odbc.OdbcDescriptorHandle StatementHandle, short ColumnNumber, global::System.Data.Odbc.ODBC32.SQL_DESC FieldIdentifier, nint CharacterAttribute, int BufferLength) 1345global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcDescriptorHandle>.ManagedToUnmanagedIn __StatementHandle_native__marshaller = new();
src\runtime\src\libraries\Common\src\Interop\Interop.Odbc.cs (3)
187/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle, 325/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle, 337/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle,
System\Data\Odbc\OdbcCommand.cs (5)
384internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) 962internal OdbcDescriptorHandle? _hdesc; // hDesc 1054OdbcDescriptorHandle? handle = _hdesc; 1136internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) 1138OdbcDescriptorHandle? hdesc = _hdesc;
System\Data\Odbc\OdbcDataReader.cs (1)
1653using (OdbcDescriptorHandle hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC))
System\Data\Odbc\OdbcParameter.cs (1)
896OdbcDescriptorHandle hdesc = command.GetDescriptorHandle(ODBC32.SQL_ATTR.APP_PARAM_DESC);