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)
1653
using (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)
387
internal
OdbcDescriptorHandle
GetDescriptorHandle(ODBC32.SQL_ATTR attribute)
968
internal
OdbcDescriptorHandle
? _hdesc; // hDesc
1060
OdbcDescriptorHandle
? handle = _hdesc;
1142
internal
OdbcDescriptorHandle
GetDescriptorHandle(ODBC32.SQL_ATTR attribute)
1144
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);