OleDbProviderSettings.AllowInProcess Property

Gets or sets the Boolean property value that specifies whether the OLE DB provider is instantiated as an in-process server.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcPropertyAttribute> _
Public Property AllowInProcess As Boolean
    Get
    Set
'Usage
Dim instance As OleDbProviderSettings
Dim value As Boolean

value = instance.AllowInProcess

instance.AllowInProcess = value
[SfcPropertyAttribute]
public bool AllowInProcess { get; set; }
[SfcPropertyAttribute]
public:
property bool AllowInProcess {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute>]
member AllowInProcess : bool with get, set
function get AllowInProcess () : boolean
function set AllowInProcess (value : boolean)

Property Value

Type: System.Boolean
A Boolean value that specifies whether the OLE DB provider is instantiated as an in-process server.
If True, the OLE DB provider is instantiated as an in-process server.
If False (default), the OLE DB provider is instantiated as an external process.

Remarks

Instantiating the provider outside the SQL Server process protects the SQL Server process from errors in the provider. When the provider is instantiated outside the SQL Server process, updates or inserts referencing long columns (text, ntext, or image) are not allowed.