2 instantiations of OdbcDescriptorHandle
System.Data.Odbc (2)
System\Data\Odbc\OdbcCommand.cs (1)
1147_hdesc = hdesc = new OdbcDescriptorHandle(_stmt!, attribute);
System\Data\Odbc\OdbcDataReader.cs (1)
1653using (OdbcDescriptorHandle hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC))
10 references to OdbcDescriptorHandle
System.Data.Odbc (10)
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)
387internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) 968internal OdbcDescriptorHandle? _hdesc; // hDesc 1060OdbcDescriptorHandle? handle = _hdesc; 1142internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) 1144OdbcDescriptorHandle? 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);