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)
1653
using (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)
638
internal 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)
646
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcDescriptorHandle
>.ManagedToUnmanagedIn __StatementHandle_native__marshaller = new();
1297
internal 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)
1304
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcDescriptorHandle
>.ManagedToUnmanagedIn __StatementHandle_native__marshaller = new();
1340
internal 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)
1345
global::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)
384
internal
OdbcDescriptorHandle
GetDescriptorHandle(ODBC32.SQL_ATTR attribute)
962
internal
OdbcDescriptorHandle
? _hdesc; // hDesc
1054
OdbcDescriptorHandle
? handle = _hdesc;
1136
internal
OdbcDescriptorHandle
GetDescriptorHandle(ODBC32.SQL_ATTR attribute)
1138
OdbcDescriptorHandle
? hdesc = _hdesc;
System\Data\Odbc\OdbcDataReader.cs (1)
1653
using (
OdbcDescriptorHandle
hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC))
System\Data\Odbc\OdbcParameter.cs (1)
896
OdbcDescriptorHandle
hdesc = command.GetDescriptorHandle(ODBC32.SQL_ATTR.APP_PARAM_DESC);