SqlCeResultSet.SetSqlMoney Method

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

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

Syntax

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

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

Parameters

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

Remarks

The underlying column must be of type money or smallmoney.

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