SqlCeResultSet.SetDateTime Method

Sets the value of the specified column to the passed-in DateTime value.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Syntax

'Declaration
Public Sub SetDateTime ( _
    ordinal As Integer, _
    value As DateTime _
)
'Usage
Dim instance As SqlCeResultSet
Dim ordinal As Integer
Dim value As DateTime

instance.SetDateTime(ordinal, value)
public void SetDateTime(
    int ordinal,
    DateTime value
)
public:
void SetDateTime(
    int ordinal, 
    DateTime value
)
member SetDateTime : 
        ordinal:int * 
        value:DateTime -> unit 
public function SetDateTime(
    ordinal : int, 
    value : DateTime
)

Parameters

  • ordinal
    Type: System.Int32
    The ordinal position of the column to set.

Remarks

The underlying column must be of type datetime or smalldatetime.

An exception is thrown if the row is not marked as updatable.

An exception is thrown if no field exists at the specified position.

See Also

Reference

SqlCeResultSet Class

System.Data.SqlServerCe Namespace