Does this Driver support IDbCommand.Prepare().

Namespace: NHibernate.Driver
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
protected virtual bool SupportsPreparingCommands { get; }
Visual Basic
Protected Overridable ReadOnly Property SupportsPreparingCommands As Boolean
	Get
Visual C++
protected:
virtual property bool SupportsPreparingCommands {
	bool get ();
}

Remarks

A value of falseFalsefalsefalse (False in Visual Basic) indicates that an exception would be thrown or the company that produces the Driver we are wrapping does not recommend using IDbCommand.Prepare().

A value of trueTruetruetrue (True in Visual Basic) indicates that calling IDbCommand.Prepare() will function fine on this Driver.

See Also