Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a row of updatable values from the data source. A SqlCeResultSet object contains one or more UpdatableRecords.
Inheritance Hierarchy
System.Object
System.Data.SqlServerCe.SqlCeUpdatableRecord
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Class SqlCeUpdatableRecord _
Implements IDataRecord
'Usage
Dim instance As SqlCeUpdatableRecord
public class SqlCeUpdatableRecord : IDataRecord
public ref class SqlCeUpdatableRecord : IDataRecord
type SqlCeUpdatableRecord =
class
interface IDataRecord
end
public class SqlCeUpdatableRecord implements IDataRecord
The SqlCeUpdatableRecord type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
![]() |
FieldCount | Returns the number of fields in the specified record. |
![]() |
HiddenFieldCount | Returns the number of hidden fields in the record. In SQL Server Compact, this property always returns 0. |
![]() |
Item[Int32] | Serves as an indexer to a specific field within the record. |
![]() |
Item[String] | Serves as an indexer to a specific field within the record. |
![]() |
Updatable | Specifies whether the field is updatable. |
Top
Methods
| Name | Description | |
|---|---|---|
![]() |
Equals | (inherited from Object) |
![]() |
Finalize | (inherited from Object) |
![]() |
GetBoolean | Returns the value of the specified field as bool. |
![]() |
GetByte | Returns the value of the specified field as byte. |
![]() |
GetBytes | Copies a length of bytes into the buffer, starting at a specified position in the specified field. |
![]() |
GetChar | Returns the value of the specified field as char. |
![]() |
GetChars | Copies a length of chars into the buffer, starting at a specified position in the specified field. |
![]() |
GetData | Returns a SqlCeDataReader positioned on the current record. |
![]() |
GetDataTypeName | Returns the datatype name for the specified field. |
![]() |
GetDateTime | Returns the value of the specified field as DateTime. |
![]() |
GetDecimal | Returns the value of the specified field as decimal. |
![]() |
GetDouble | Returns the value of the specified field as double. |
![]() |
GetFieldType | Returns the CLR datatype for the specified field. |
![]() |
GetFloat | Returns the value of the specified field as float. |
![]() |
GetGuid | Returns the value of the specified field as a GUID. |
![]() |
GetHashCode | (inherited from Object) |
![]() |
GetInt16 | Returns the value of the specified field as int16. |
![]() |
GetInt32 | Returns the value of the specified field as int32. |
![]() |
GetInt64 | Returns the value of the specified field as int64. |
![]() |
GetName | Returns the name of the specified field. |
![]() |
GetOrdinal | Returns the ordinal for the field specified in the passed-in name. |
![]() |
GetSqlBinary | Returns the value of the specified field as SqlBinary. |
![]() |
GetSqlBoolean | Returns the value of the specified field as SqlBoolean. |
![]() |
GetSqlByte | Returns the value of the specified field as SqlByte. |
![]() |
GetSqlBytesRef | Returns a reference to the SqlBytes instance that contains the value of the specified field. |
![]() |
GetSqlCharsRef | Returns a reference to the SqlChars instance that contains the value of the specified field. |
![]() |
GetSqlDateTime | Returns the value of the specified field as SqlDateTime. |
![]() |
GetSqlDecimal | Returns the value of the specified field as SqlDecimal. |
![]() |
GetSqlDouble | Returns the value of the specified field as SqlDouble. |
![]() |
GetSqlGuid | Returns the value of the specified field as SqlGuid. |
![]() |
GetSqlInt16 | Returns the value of the specified field as SqlInt16. |
![]() |
GetSqlInt32 | Returns the value of the specified field as SqlInt32. |
![]() |
GetSqlInt64 | Returns the value of the specified field as SqlInt64. |
![]() |
GetSqlMetaData | Returns the value of the specified field as SqlMetaData. |
![]() |
GetSqlMoney | Returns the value of the specified field as SqlMoney. |
![]() |
GetSqlSingle | Returns the value of the specified field as SqlSingle. |
![]() |
GetSqlString | Returns the value of the specified field as SqlString. |
![]() |
GetString | Returns the value of the specified field as string. |
![]() |
GetType | (inherited from Object) |
![]() |
GetValue | Returns the value of the specified record. |
![]() |
GetValues | Returns the values for all of the fields in a record. |
![]() |
IsDBNull | Determines if the specified field is NULL. |
![]() |
IsSetAsDefault | Determines if the specified field is marked to use the underlying default value. |
![]() |
MemberwiseClone | (inherited from Object) |
![]() |
SetBoolean | Sets the column at the specified index to the passed-in bool value. |
![]() |
SetByte | Sets the column at the specified index to the passed-in byte value. |
![]() |
SetBytes | Copies a length of bytes from the specified buffer to the specified column, starting at the specified location within that field. |
![]() |
SetChar | Sets the column at the specified index to the passed-in char value. |
![]() |
SetChars | Copies a length of chars from the specified buffer to the specified field, starting at the specified location within that field. |
![]() |
SetDateTime | Sets the column at the specified index to the passed-in DateTime value. |
![]() |
SetDecimal | Sets the column at the specified index to the passed-in decimal value. |
![]() |
SetDefault | Sets the default value for the specified field. |
![]() |
SetDouble | Sets the column at the specified index to the passed-in double value. |
![]() |
SetFloat | Sets the column at the specified index to the passed-in float value. |
![]() |
SetGuid | Sets the column at the specified index to the passed-in GUID value. |
![]() |
SetInt16 | Sets the column at the specified index to the passed-in int16 value. |
![]() |
SetInt32 | Sets the column at the specified index to the passed-in int32 value. |
![]() |
SetInt64 | Sets the column at the specified index to the passed-in int64 value. |
![]() |
SetObjectRef | Sets the value of the specified field by reference rather than by-value. |
![]() |
SetSqlBinary | Sets the column at the specified index to the passed-in SqlBinary value. |
![]() |
SetSqlBoolean | Sets the column at the specified index to the passed-in SqlBool value. |
![]() |
SetSqlByte | Sets the column at the specified index to the passed-in SqlByte value. |
![]() |
SetSqlDateTime | Sets the column at the specified index to the passed-in SqlDateTime value. |
![]() |
SetSqlDecimal | Sets the column at the specified index to the passed-in SqlDecimal value. |
![]() |
SetSqlDouble | Sets the column at the specified index to the passed-in SqlDouble value. |
![]() |
SetSqlGuid | Sets the column at the specified index to the passed-in SqlGuid value. |
![]() |
SetSqlInt16 | Sets the column at the specified index to the passed-in SqlInt16 value. |
![]() |
SetSqlInt32 | Sets the column at the specified index to the passed-in SqlInt32 value. |
![]() |
SetSqlInt64 | Sets the column at the specified index to the passed-in SqlInt64 value. |
![]() |
SetSqlMoney | Sets the column at the specified index to the passed-in SqlMoney value. |
![]() |
SetSqlSingle | Sets the column at the specified index to the passed-in SqlSingle value. |
![]() |
SetSqlString | Sets the column at the specified index to the passed-in SqlString value. |
![]() |
SetString | Sets the column at the specified index to the passed-in string value. |
![]() |
SetValue | Sets the column at the specified index to the passed-in value. |
![]() |
SetValues | Sets each of the fields in the record to the corresponding value in the passed-in array. |
![]() |
ToString | (inherited from Object) |
Top
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
.gif)
.gif)
.gif)