2 instantiations of OdbcDescriptorHandle
System.Data (2)
fx\src\data\System\Data\Odbc\OdbcCommand.cs (1)
1028_hdesc = hdesc = new OdbcDescriptorHandle(_stmt, attribute);
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
1448using(OdbcDescriptorHandle hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC)) {
10 references to OdbcDescriptorHandle
System.Data (10)
fx\src\data\System\Data\Common\UnsafeNativeMethods.cs (3)
214/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle, 384/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle, 393/*SQLHSTMT*/OdbcDescriptorHandle StatementHandle,
fx\src\data\System\Data\Odbc\OdbcCommand.cs (5)
362internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) { 880internal OdbcDescriptorHandle _hdesc; // hDesc 958OdbcDescriptorHandle handle = _hdesc; 1025internal OdbcDescriptorHandle GetDescriptorHandle(ODBC32.SQL_ATTR attribute) { 1026OdbcDescriptorHandle hdesc = _hdesc;
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
1448using(OdbcDescriptorHandle hdesc = new OdbcDescriptorHandle(StatementHandle, ODBC32.SQL_ATTR.APP_PARAM_DESC)) {
fx\src\data\System\Data\Odbc\OdbcParameter.cs (1)
784OdbcDescriptorHandle hdesc = command.GetDescriptorHandle(ODBC32.SQL_ATTR.APP_PARAM_DESC);