1 instantiation of OdbcConnectionHandle
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionOpen.cs (1)
15outerConnection.ConnectionHandle = new OdbcConnectionHandle(outerConnection, connectionOptions, environmentHandle);
35 references to OdbcConnectionHandle
System.Data.Odbc (35)
_generated\0\LibraryImports.g.cs (14)
359internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLDriverConnectW(global::System.Data.Odbc.OdbcConnectionHandle hdbc, nint hwnd, string connectionstring, short cbConnectionstring, nint connectionstringout, short cbConnectionstringoutMax, out short cbConnectionstringout, short fDriverCompletion) 365global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __hdbc_native__marshaller = new(); 556internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLGetConnectAttrW(global::System.Data.Odbc.OdbcConnectionHandle ConnectionHandle, global::System.Data.Odbc.ODBC32.SQL_ATTR Attribute, byte[] Value, int BufferLength, out int StringLength) 562global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __ConnectionHandle_native__marshaller = new(); 762internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLGetFunctions(global::System.Data.Odbc.OdbcConnectionHandle hdbc, global::System.Data.Odbc.ODBC32.SQL_API fFunction, out short pfExists) 768global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __hdbc_native__marshaller = new(); 800internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLGetInfoW(global::System.Data.Odbc.OdbcConnectionHandle hdbc, global::System.Data.Odbc.ODBC32.SQL_INFO fInfoType, byte[] rgbInfoValue, short cbInfoValueMax, out short pcbInfoValue) 806global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __hdbc_native__marshaller = new(); 839internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLGetInfoW(global::System.Data.Odbc.OdbcConnectionHandle hdbc, global::System.Data.Odbc.ODBC32.SQL_INFO fInfoType, byte[] rgbInfoValue, short cbInfoValueMax, nint pcbInfoValue) 844global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __hdbc_native__marshaller = new(); 1217internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLSetConnectAttrW(global::System.Data.Odbc.OdbcConnectionHandle ConnectionHandle, global::System.Data.Odbc.ODBC32.SQL_ATTR Attribute, string Value, int StringLength) 1222global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __ConnectionHandle_native__marshaller = new(); 1254internal static partial global::System.Data.Odbc.ODBC32.SQLRETURN SQLSetConnectAttrW(global::System.Data.Odbc.OdbcConnectionHandle ConnectionHandle, global::System.Data.Odbc.ODBC32.SQL_ATTR Attribute, nint Value, int StringLength) 1259global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.OdbcConnectionHandle>.ManagedToUnmanagedIn __ConnectionHandle_native__marshaller = new();
src\runtime\src\libraries\Common\src\Interop\Interop.Odbc.cs (7)
129/*SQLHDBC*/OdbcConnectionHandle hdbc, 170/*SQLHBDC*/OdbcConnectionHandle ConnectionHandle, 217/*SQLHBDC*/OdbcConnectionHandle hdbc, 223/*SQLHBDC*/OdbcConnectionHandle hdbc, 231/*SQLHBDC*/OdbcConnectionHandle hdbc, 304/*SQLHBDC*/OdbcConnectionHandle ConnectionHandle, 311/*SQLHBDC*/OdbcConnectionHandle ConnectionHandle,
System\Data\Odbc\OdbcConnection.cs (10)
22private OdbcConnectionHandle? _connectionHandle; 35internal OdbcConnectionHandle? ConnectionHandle 359OdbcConnectionHandle? connectionHandle = _connectionHandle; 386OdbcConnectionHandle? connectionHandle = ConnectionHandle; 418OdbcConnectionHandle? connectionHandle = ConnectionHandle; 448OdbcConnectionHandle connectionHandle = ConnectionHandle!; 488OdbcConnectionHandle? connectionHandle = ConnectionHandle; 781OdbcConnectionHandle? connectionHandle = ConnectionHandle; 924OdbcConnectionHandle connectionHandle = ConnectionHandle!; 951OdbcConnectionHandle connectionHandle = ConnectionHandle!;
System\Data\Odbc\OdbcStatementHandle.cs (1)
56internal OdbcStatementHandle(OdbcConnectionHandle? connectionHandle) : base(ODBC32.SQL_HANDLE.STMT, connectionHandle)
System\Data\Odbc\OdbcTransaction.cs (3)
12private OdbcConnectionHandle? _handle; 14internal OdbcTransaction(OdbcConnection connection, IsolationLevel isolevel, OdbcConnectionHandle handle) 103OdbcConnectionHandle? handle = _handle;