1 instantiation of OdbcConnectionHandle
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionOpen.cs (1)
15
outerConnection.ConnectionHandle = new
OdbcConnectionHandle
(outerConnection, connectionOptions, environmentHandle);
35 references to OdbcConnectionHandle
System.Data.Odbc (35)
_generated\0\LibraryImports.g.cs (14)
359
internal 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)
365
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __hdbc_native__marshaller = new();
556
internal 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)
562
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __ConnectionHandle_native__marshaller = new();
762
internal 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)
768
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __hdbc_native__marshaller = new();
800
internal 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)
806
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __hdbc_native__marshaller = new();
839
internal 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)
844
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __hdbc_native__marshaller = new();
1217
internal 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)
1222
global::System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller<global::System.Data.Odbc.
OdbcConnectionHandle
>.ManagedToUnmanagedIn __ConnectionHandle_native__marshaller = new();
1254
internal 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)
1259
global::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)
22
private
OdbcConnectionHandle
? _connectionHandle;
35
internal
OdbcConnectionHandle
? ConnectionHandle
359
OdbcConnectionHandle
? connectionHandle = _connectionHandle;
386
OdbcConnectionHandle
? connectionHandle = ConnectionHandle;
418
OdbcConnectionHandle
? connectionHandle = ConnectionHandle;
448
OdbcConnectionHandle
connectionHandle = ConnectionHandle!;
488
OdbcConnectionHandle
? connectionHandle = ConnectionHandle;
781
OdbcConnectionHandle
? connectionHandle = ConnectionHandle;
924
OdbcConnectionHandle
connectionHandle = ConnectionHandle!;
951
OdbcConnectionHandle
connectionHandle = ConnectionHandle!;
System\Data\Odbc\OdbcStatementHandle.cs (1)
56
internal OdbcStatementHandle(
OdbcConnectionHandle
? connectionHandle) : base(ODBC32.SQL_HANDLE.STMT, connectionHandle)
System\Data\Odbc\OdbcTransaction.cs (3)
12
private
OdbcConnectionHandle
? _handle;
14
internal OdbcTransaction(OdbcConnection connection, IsolationLevel isolevel,
OdbcConnectionHandle
handle)
103
OdbcConnectionHandle
? handle = _handle;