Click or drag to resize
SphinxQLParameter Class
Represents a parameter to a SphinxQLCommand. This class cannot be inherited.
Inheritance Hierarchy

Namespace: SphinxConnector.SphinxQL
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
public sealed class SphinxQLParameter : DbParameter

The SphinxQLParameter type exposes the following members.

Constructors
  NameDescription
Public methodSphinxQLParameter
Initializes a new instance of the SphinxQLParameter class.
Public methodSphinxQLParameter(String, SphinxType)
Initializes a new instance of the SphinxQLParameter class.
Public methodSphinxQLParameter(String, Object)
Initializes a new instance of the SphinxQLParameter class.
Public methodSphinxQLParameter(String, Object, SphinxType)
Initializes a new instance of the SphinxQLParameter class.
Top
Methods
  NameDescription
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodResetDbType
Resets the DbType property to its original settings.
(Overrides DbParameterResetDbType.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyDbType
Gets or sets the DbType of the parameter.
(Overrides DbParameterDbType.)
Public propertyDirection
Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. Not supported by Sphinx. All parameters are assumed to be input parameters
(Overrides DbParameterDirection.)
Public propertyIsNullable
Gets or sets a value that indicates whether the parameter accepts null values.
(Overrides DbParameterIsNullable.)
Public propertyParameterName
Gets or sets the name of the SphinxQLParameter.
(Overrides DbParameterParameterName.)
Public propertySize
Gets or sets the maximum size, in bytes, of the data within the column.
(Overrides DbParameterSize.)
Public propertySourceColumn
Gets or sets the name of the source column mapped to the DataSet and used for loading or returning the Value.
(Overrides DbParameterSourceColumn.)
Public propertySourceColumnNullMapping
Gets or sets a value which indicates whether the source column is nullable. This allows DbCommandBuilder to correctly generate Update statements for nullable columns.
(Overrides DbParameterSourceColumnNullMapping.)
Public propertySourceVersion
Gets or sets the DataRowVersion to use when you load Value.
(Overrides DbParameterSourceVersion.)
Public propertySphinxType
Gets or sets the SphinxType of this instance. Default is String.
Public propertyValue
Gets or sets the value of the parameter. Default is null.
(Overrides DbParameterValue.)
Top
Explicit Interface Implementations
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also